[mcs] Implements C# 7.2 readonly structs
[mono.git] / mcs / errors / cs1644-56.cs
1 // CS1644: Feature `readonly structs' cannot be used because it is not part of the C# 7.0 language specification
2 // Line: 5
3 // Compiler options: -langversion:7
4
5 readonly struct S
6 {
7 }