[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0271.cs
blob2b4ec1554982b3c4a1934fc1338fcc9aa521e884
1 // CS0271: The property or indexer `P.Prop' cannot be used in this context because the get accessor is inaccessible
2 // Line: 19
4 class P
6 public static int Prop
8 private get {
9 return 4;
11 set {}
15 public class C
17 public static int Main ()
19 return P.Prop;