summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0540.cs
blob: c415d0239de9d756851ee569dadeccab8d0a885d (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0540: `B.A.B()': containing type does not implement interface `A'
// Line:

interface A {
}

class B {
	void A.B () {}

	static void Main () {}
}