[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0200-4.cs
blobbf2cbff074173586fd823f2ebe529ce233f90525
1 // CS0200: Property or indexer `A.X' cannot be assigned to (it is read-only)
2 // Line: 13
4 public class A
6 public int X { get; }
9 public class B : A
11 public B ()
13 base.X = 1;