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

cs0111-11.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00f4ae5ff0d3dd60af471e534c65b34cae7492a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs111.cs : Class `Blah' already contains a definition with the same return value and parameter types for method 'I.M'
// Line : 12

public interface I
{
    void M ();
}

public class Blah: I
{
        void I.M () {}
        void I.M () {}
}