2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0536-2.cs
bloba5bac3cfee43bfafa5ae0ee6b360b083fe94e86d
1 // cs0536-2.cs: `B' does not implement interface member `I.Test(int)'. `B.Test(int)' is either static, not public, or has the wrong return type
2 // Line: 11
4 interface I
6 void Test (int a);
9 class B: I
11 public static void Test (int a) {}