<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0269</ErrorName>
  <Examples>
    <string>// CS0269: Use of unassigned out parameter `a'
// Line: 23

struct A
{
	public int a;
	public A (int foo)
	{
	    a = foo;
	}
}

class X
{
	static void test_output (A a)
	{
	}
	
	static void test5 (out A a)
	{
		test_output (a);
		a = new A (5);
	}
}
</string>
    <string>// CS0269: Use of unassigned out parameter `a'
// Line: 9

public class A
{
	void Test(out A a)
	{
		a.ToString ();
		a = null;
	}
}
</string>
  </Examples>
</ErrorDocumentation>