[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0165-44.cs
blobd4b6988c467947125cb3e274e568f1354b54a3f0
1 // CS0165: Use of unassigned local variable `x'
2 // Line: 19
4 struct S
6 public object O;
9 class X
11 public S s;
14 class C
16 public static void Main ()
18 X x;
19 x.s.O = 2;