"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0200-6.cs
blobdcfe2d215726f1f47cb976dec1c45d512690c09b
1 // CS0200: Property or indexer `C.P' cannot be assigned to (it is read-only)
2 // Line: 10
4 class C
6 public int P { get; }
8 public void Foo ()
10 P = 10;