[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0170-6.cs
blob63e784e95232997f56d2f2a4d8494eedd9a65849
1 // CS0170: Use of possibly unassigned field `c'
2 // Line: 21
4 public class C
6 public int v;
9 public struct S
11 public int a;
12 public C c;
15 public class Test
17 static void Main ()
19 S s;
20 s.a = 2;
21 int xx = s.c.v;