"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0541.cs
blob20dde272a5d1f401427ccce316d8e8f94671d62c
1 // CS0541: `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 () {}