11 lines
130 B
C#
Raw Permalink Normal View History

// CS0102: The type `C' already contains a definition for `get_Foo'
// Line: 9
class C
{
int Foo {
get { }
}
int get_Foo;
}