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

cs0541.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05afcfbf116fda958411d807e0dac05b9086dfc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0541.cs: 'ICloneable.Clone' : explicit interface declaration can only be declared in a class or struct
// Line: 7

using System;

interface Interface: ICloneable {
        void ICloneable.Clone ();
}

class Test {
	static void Main () {}
}