2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0541.cs
blob5a5b7b03f5e2cccef68c5f6b434a11e35d32ab8b
1 // cs0541.cs: `Interface.ICloneable.Clone()': explicit interface declaration can only be declared in a class or struct
2 // Line: 7
4 using System;
6 interface Interface: ICloneable {
7 void ICloneable.Clone ();
10 class Test {
11 static void Main () {}