[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0165-11.cs
blobb9b7ba180c8e14c0500098d111580e7204de3140
1 // CS0165: Use of unassigned local variable `fb'
2 // Line: 17
4 using System.Collections;
6 public class EntryPoint
8 public static void Main ()
10 ArrayList fields = new ArrayList ();
12 Field fb;
13 while (fields.Count > 0) {
14 fb = (Field) fields[0];
17 if (fb.Name != "b") {
18 System.Console.WriteLine ("shouldn't compile here.");
22 public class Field
24 public string Name;