[mcs] Implements C# 7.2 readonly structs
[mono.git] / mcs / errors / cs0106-11.cs
1 // CS0106: The modifier `readonly' is not valid for this item
2 // Line: 6
3 // Compiler option: -langversion:latest
4
5 readonly interface I
6 {
7 }