summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0269-2.cs
blob: b5683616dd222e6c2028e22a3990b050107623f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0269: Use of unassigned out parameter `a'
// Line: 9

public class A
{
	void Test(out A a)
	{
		a.ToString ();
		a = null;
	}
}