summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0841-4.cs
blob: 9aa926454939949b20ebec00ea9aafb56ba8addb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0841: A local variable `v' cannot be used before it is declared
// Line: 9


public class Test
{
	static void Main ()
	{
		var v = ++v;
	}
}