Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0260-2.cs
1 // CS0260: Missing partial modifier on declaration of type `Foo'. Another partial declaration 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 }