8 lines
118 B
C#
8 lines
118 B
C#
|
// CS0102: The type `X' already contains a definition for `A'
|
||
|
// Line: 6
|
||
|
|
||
|
class X {
|
||
|
const int A = 10;
|
||
|
int A () {}
|
||
|
}
|