[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0200-5.cs
blob4657362f8295cf9db024213be1b330ee7efc05cf
1 // CS0200: Property or indexer `C.S' cannot be assigned to (it is read-only)
2 // Line: 10
4 class C
6 public static int S { get; }
8 public C ()
10 S = 3;