Merge pull request #5567 from kumpera/fix_59334
[mono.git] / mcs / errors / cs0825-3.cs
1 // CS0825: The contextual keyword `var' may only appear within a local variable declaration
2 // Line: 9
3
4
5 public class Test
6 {
7         const var v = 9;
8 }
9