[mcs] Initial by ref returns and variables support
[mono.git] / mcs / errors / cs8146.cs
1 // CS8146: `X.TestProp': property and indexer which return by reference must have a get accessor
2 // Line: 6
3
4 public class X
5 {
6         ref string TestProp { set; }
7 }