2004-07-17 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / cs0541.cs
1 // cs0541.cs: 'ICloneable.Clone' : explicit interface declaration can only be declared in a class or struct\r
2 // Line: 7\r
3 \r
4 using System;\r
5 \r
6 interface Interface: ICloneable {\r
7         void ICloneable.Clone ();\r
8 }\r
9 \r
10 \r