[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0571-7.cs
blobc171f80940680178139fb1ab78e31164b998bb15
1 // CS0571: `C.Prop.set': cannot explicitly call operator or accessor
2 // Line: 14
4 class C
6 delegate void D (int i);
8 static int Prop {
9 set {}
12 public static void Main ()
14 D d = set_Prop;