summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0165-32.cs
blob: fb9652267c8976f546d2a05a8807ca70b48f141c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS0165: Use of unassigned local variable `a'
// Line: 9

class C
{
	static void Main ()
	{
		int a;
		Foo (out a, a);
	}

	static void Foo (out int a, int b)
	{
		a = b;
	}
}