13 lines
127 B
C#
Raw Normal View History

// CS1597: Semicolon after method or accessor block is not valid
// Line: 10
class C
{
public int Foo
{
get
{
};
}
}