2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git] / mcs / errors / cs0540.cs
bloba41e144c9fa5be9c7bab477d365ae7e6fa1325df
1 // cs0540.cs: `B.A.B()': containing type does not implement interface `A'
2 // Line:
4 interface A {
7 class B {
8 void A.B () {}
10 static void Main () {}