[mcs] Initial by ref returns and variables support
[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 }