[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0200.cs
blob246006d0f0a5db3af740a48ce530955369b6dfd5
1 // CS0200: Property or indexer `X.P' cannot be assigned to (it is read-only)
2 // Line: 13
4 class X {
5 static int P {
6 get {
7 return 1;
11 static int Main ()
13 P = 10;
14 return 1;