summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0165-16.cs
blob: 08041be09eb4e3a69660a59531f7ef537b2bf289 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Cs0165: Use of unassigned local variable `c'
// Line: 9

public class C
{
	public static void Main ()
	{
		C c;
		c.ToString ();
	}
}