summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0102-6.cs
blob: 0fc801607b6e04a9baa111d572181bba9e298910 (plain)
1
2
3
4
5
6
7
// CS0102: The type `X' already contains a definition for `A'
// Line: 6

class X {
	const int A = 10;
	int A () {}
}