[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0200-4.cs
1 // CS0200: Property or indexer `A.X' cannot be assigned to (it is read-only)
2 // Line: 13
3
4 public class A
5 {
6         public int X { get; }
7 }
8
9 public class B : A
10 {
11         public B ()
12         {
13                 base.X = 1;
14         }
15 }