use MOONLIGHT symbol
[mcs.git] / errors / cs0272.cs
blob43e15a4d1e1e857383000f8b162b2728854c932d
1 // cs0272.cs: The property or indexer `P.Prop' cannot be used in this context because the set accessor is inaccessible
2 // Line: 19
4 class P
6 public static int Prop
8 get {
9 return 4;
11 private set {}
15 public class C
17 public static void Main ()
19 P.Prop = 453422;