[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / CS0506-3-lib.cs
1 public interface ITest
2 {
3         void Run ();
4 }
5
6 public class A
7 {
8         public void Run ()
9         {
10         }
11 }
12
13 public class B : A, ITest
14 {
15 }