Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0111-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28b9788657bfc07e51901914bb4095067b94d162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// gcs0111-2.cs: `Blah.I.M<T>(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) {}
}