[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0154-5.cs
blob21f55ceae5aadfb3fdbfe0cbd0cd96278d1b45e8
1 // CS0154: The property or indexer `BugReport.MyProperty' cannot be used in this context because it lacks the `get' accessor
2 // Line: 16
4 static class BugReport
6 static float MyProperty {
7 set { }
10 static void MyExtension (this float val)
14 public static void Main ()
16 MyProperty.MyExtension ();