[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0165-38.cs
blob20fc40949fde379a1694e7f5d44807f40aab30b9
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 16
4 using System;
6 class Program
8 public static void Main ()
10 int a;
11 string s = "";
13 do {
14 } while (s != "s" && (a = 4) > 3);
16 Console.WriteLine (a);