2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0261.cs
blob3e0a9945e0521d5bb2081a5132b0dba8dfb45425
1 // CS0261: Partial declarations of `Foo' must be all classes, all structs or all interfaces
2 // Line: 6
3 partial class Foo
4 { }
6 partial struct Foo
7 { }
9 class X
11 static void Main ()
12 { }