2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0535.cs
blobc8975fca4fa95b61175cd593491869a14c518f02
1 // cs0535.cs: `Class' does not implement interface member `Interface.Method()'
2 // Line: 8
4 interface Interface {
5 void Method();
8 class Class: Interface {