summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0825-3.cs
blob: 5177d4fff8ae9d7487eee247c578ef722a058c74 (plain)
1
2
3
4
5
6
7
8
9
// CS0825: The contextual keyword `var' may only appear within a local variable declaration
// Line: 9


public class Test
{
	const var v = 9;
}