Files
linux-packaging-mono/mcs/errors/cs8145.cs

7 lines
137 B
C#
Raw Normal View History

// CS8145: Auto-implemented property `X.TestProp' cannot return by reference
// Line: 6
public class X
{
ref string TestProp { get; }
}