Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0736-2.cs
1 // CS0736: `B' does not implement interface member `I.Test(int)' and the best implementing candidate `B.Test(int)' is static
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 }