[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs8341.cs
blobc78406345fe10aeabc2a67e25567741e42fc107e
1 // CS8341: Auto-implemented instance property `S.field' in readonly structs must be readonly
2 // Line: 6
3 // Compiler options: -langversion:latest
5 readonly struct S
7 int field { get; set; }