2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0111-2.cs
blob4c72093bdf81bf491592da5138d784aa992e5350
1 // CS0111: A member `Blah.I.M<U>(int)' is already defined. Rename this member or use different parameter types
2 // Line : 12
4 public interface I
6 void M<T> (int i);
9 public class Blah: I
11 void I.M<T> (int i) {}
12 void I.M<U> (int i) {}