[mcs] Implements C# 7.2 readonly structs
[mono.git] / mcs / errors / cs8145.cs
1 // CS8145: Auto-implemented property `X.TestProp' cannot return by reference
2 // Line: 6
3
4 public class X
5 {
6         ref string TestProp { get; }
7 }