<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0269</ErrorName>
  <Examples>
    <string>// cs0269.cs: 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>
  </Examples>
</ErrorDocumentation>