summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0539.cs
blob: a79859ce3ecae4fb07e7b27dd5ebffa4e26bbe68 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0539: `A.B' in explicit interface declaration is not a member of interface
// Line:

interface A {
}

class X : A {
	void A.B () {}
	static void Main () {}
}