[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0414.cs
blobd63bb4a8e3be914c19e3bafe3b72a06934d2123e
1 // CS0414: The private field `X.i' is assigned but its value is never used
2 // Line: 6
3 // Compiler options: -warnaserror -warn:3
5 class X {
6 int i = 3;
8 public void Y ()