<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <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 `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>