8 lines
103 B
C#
Raw Normal View History

// CS1043: Invalid accessor body `1', expecting `;' or `{'
// Line: 6
class C
{
int Foo { set 1; }
}