* HttpWebRequestTest.cs: Remove usage of deprecated Assertion class.
[mono.git] / mcs / errors / cs0536-2.cs
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
3
4 interface I
5 {
6         void Test (int a);
7 }
8
9 class B: I
10 {
11         public static void Test (int a) {}
12 }