[mcs] Fixes codegen for pattern probing with value-type variables
[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 }