2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / gcs0111-2.cs
blob28b9788657bfc07e51901914bb4095067b94d162
1 // gcs0111-2.cs: `Blah.I.M<T>(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) {}