"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1648.cs
blobe09301cd1bafddd9e826de3beb346039892703bc
1 // CS1648: Members of readonly field `C.s' cannot be modified (except in a constructor or a variable initializer)
2 // Line: 13
4 struct S {
5 public int x;
8 class C {
9 readonly S s;
11 public void Test ()
13 s.x = 42;