[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs8131.cs
blob362c5916c8910575e19ad9dc9b1f1106c8f29554
1 // CS8131: Deconstruct assignment requires an expression with a type on the right-hand-side
2 // Line: 9
4 class C
6 public static void Main ()
8 int x, y;
9 (x, y) = null;