cf3c50847224a78513e2cfdb19b1eb2c90633182
[mono.git] / mcs / errors / cs8145.cs
1 // CS8145: Auto-implemented properties cannot return by reference
2 // Line: 6
3
4 public class X
5 {
6         ref string TestProp { get; }
7 }