[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0165-47.cs
blob160daa2423855b9c091ccce4646865dcdd968e4f
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 17
4 class Test
6 public static bool Foo (out int v)
8 v = 0;
9 return false;
12 static void Main()
14 int a;
15 bool b = false;
17 if ((b && Foo (out a)) || b) {
18 System.Console.WriteLine (a);