<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1060</ErrorName>
  <Examples>
    <string>// CS1060: Use of possibly unassigned field `c'
// Line: 25
// Compiler options: -warnaserror

public class C
{
	public int v;
}

public struct S2
{
	public C c;
}

public struct S
{
	public S2 s2;
}

public class Test
{
	static void Main ()
	{
		S s;
		s.s2.c.v = 9;
	}
}
</string>
    <string>// CS1060: Use of possibly unassigned field `c'
// Line: 25
// Compiler options: -warnaserror

using System;

public class C
{
	public EventHandler v;
}

public struct S2
{
	public C c;
}

public struct S
{
	public S2 s2;
}

public class Test
{
	static void Main ()
	{
		S s;
		s.s2.c.v = null;
	}
}
</string>
    <string>// CS1060: Use of possibly unassigned field `x'
// Line: 30
// Compiler options: -warnaserror

public class C
{
	public int v;
}

public struct S
{
	public C c;
}

class X
{
	public S s;
}

struct S2
{
	public X x;
}

public class Test
{
	static void Main ()
	{
		S2 s2;
		s2.x.s.c.v = 5;
	}
}
</string>
    <string>// CS1060: Use of possibly unassigned field `c'
// Line: 19
// Compiler options: -warnaserror

public class C
{
	public int v;
}

public struct S
{
	public C c;
}

public class Test
{
	static void Main ()
	{
		S s;
		s.c.v = 5;
	}
}
</string>
  </Examples>
</ErrorDocumentation>