8 lines
118 B
C#
Raw Normal View History

// CS0102: The type `X' already contains a definition for `A'
// Line: 6
class X {
const int A = 10;
int A () {}
}