11 lines
130 B
C#
11 lines
130 B
C#
|
// CS0102: The type `C' already contains a definition for `get_Foo'
|
||
|
// Line: 9
|
||
|
|
||
|
class C
|
||
|
{
|
||
|
int Foo {
|
||
|
get { }
|
||
|
}
|
||
|
int get_Foo;
|
||
|
}
|