2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0260-2.cs
blobd010784e61a9e420f13e30c44f6c827efcd2fbd7
1 // cs0260-2.cs: Missing partial modifier on declaration of type `Foo'. Another partial declaration 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 { }