summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0111-22.cs
blob: 4c72093bdf81bf491592da5138d784aa992e5350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0111: A member `Blah.I.M<U>(int)' is already defined. Rename this member or use different parameter types
// Line : 12

public interface I
{
    void M<T> (int i);
}

public class Blah: I
{
        void I.M<T> (int i) {}
        void I.M<U> (int i) {}
}