13 lines
161 B
C#
Raw Normal View History

// CS0200: Property or indexer `C.S' cannot be assigned to (it is read-only)
// Line: 10
class C
{
public static int S { get; }
public C ()
{
S = 3;
}
}