**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0260-2.cs
blob2d0d3c52b6b9870f21f1d0219ffbf07b5dfddfbb
1 // CS0260: Missing partial modifier on declaration of type `Foo'; another partial implementation of this type exists
2 // Line: 6
3 public partial class Foo
4 { }
6 public class Foo
7 { }
9 class X
11 static void Main ()
12 { }