Files
linux-packaging-mono/mcs/errors/cs0102-19.cs

11 lines
130 B
C#
Raw Normal View History

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