2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0535-6.cs
blobdd3b09f893ca8eb890ea0371d797bff6406b4796
1 // CS0535: `CA' does not implement interface member `IA.M()'
2 // Line: 14
4 interface IA
6 void M ();
9 interface IB
11 void M ();
14 class CA : IA, IB
16 void IB.M ()