New test.
[mono.git] / mcs / errors / cs0261.cs
1 // CS0261: Partial declarations of `Foo' must be all classes, all structs or all interfaces
2 // Line: 6
3 partial class Foo
4 { }
5
6 partial struct Foo
7 { }
8
9 class X
10 {
11         static void Main ()
12         { }
13 }