2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0736-2.cs
blob7465329a51547e0540ba9e9c4845da68866f611a
1 // CS0736: `B' does not implement interface member `I.Test(int)' and the best implementing candidate `B.Test(int)' is static
2 // Line: 11
4 interface I
6 void Test (int a);
9 class B: I
11 public static void Test (int a) {}