[Mono.Unix] Fix crasher in StringToHeap (#5639)
[mono.git] / mcs / errors / cs0541.cs
1 // CS0541: `Interface.ICloneable.Clone()': explicit interface declaration can only be declared in a class or struct
2 // Line: 7
3
4 using System;
5
6 interface Interface: ICloneable {
7         void ICloneable.Clone ();
8 }
9
10 class Test {
11         static void Main () {}
12 }
13