Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0260.cs
1 // CS0260: Missing partial modifier on declaration of type `Foo'. Another partial declaration of this type exists
2 // Line: 3
3 public class Foo
4 { }
5
6 public partial class Foo
7 { }
8
9 class X
10 {
11         static void Main ()
12         { }
13 }