(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0541.cs
blob167dfc84bcbbd2a400e47552935610b97508f3df
1 // cs0541.cs: '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 () {}