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