[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0111-26.cs
1 // CS0111: A member `Blah.I.M<X>()' is already defined. Rename this member or use different parameter types
2 // Line : 12
3
4 public interface I
5 {
6     void M<X> ();
7 }
8
9 public class Blah: I
10 {
11         void I.M<X> () {}
12         void I.M<X> () {}
13 }
14