* default.build: Fix relative path to key. Avoid use of ugly foreach
[mono.git] / mcs / errors / gcs0825.cs
1 // CS0825: The contextual keyword `var' may only appear within a local variable declaration
2 // Line: 9
3 // Compiler options: -langversion:linq
4
5 public class Test
6 {
7         var v = "a";
8 }
9