2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0260-2.cs
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 { }
5
6 public class Foo
7 { }
8
9 class X
10 {
11         static void Main ()
12         { }
13 }