2005-06-27 Geoff Norton <gnorton@customerdna.com>
[mono-project.git] / mcs / errors / cs0260.cs
blobf42b790121f3eb881884f2b1e1e1f68ee4c0724f
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 { }