summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0541.cs
blob: 20dde272a5d1f401427ccce316d8e8f94671d62c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0541: `Interface.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 () {}
}