8 lines
152 B
C#
Raw Normal View History

// CS0501: `X.Mine.get' must have a body because it is not marked abstract, extern, or partial
// Line: 6
class X
{
public int Mine { get; set {} }
}