(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0260.cs
blob20e9a456b182df644c5b3d00209a18c6800572a7
1 // CS0260: Missing partial modifier on declaration of type `Foo'; another partial implementation of this type exists
2 // Line: 3
3 public class Foo
4 { }
6 public partial class Foo
7 { }
9 class X
11 static void Main ()
12 { }