2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / gcs0111-2.cs
blob42a706fc0b6276a616b1134e831055b73d25d29e
1 // gcs0111-2.cs: `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) {}