summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0822.cs
blob: 023ac1c14532256a5ec2bfed4a56a654023fb136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0822: An implicitly typed local variable cannot be a constant
// Line: 9


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