use MOONLIGHT symbol
[mcs.git] / errors / cs0571-7.cs
blobd7f29faa35bc8769e29293c82da455fc7a4a646b
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;