[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1644-14.cs
1 // CS1644: Feature `implicitly typed local variable' cannot be used because it is not part of the C# 2.0 language specification
2 // Line:  9
3 // Compiler options: -langversion:ISO-2
4
5 class M
6 {
7         public static void Main ()
8         {
9                 var a = 1;
10         }
11 }