14 lines
188 B
C#
Raw Normal View History

// CS0261: Partial declarations of `Foo' must be all classes, all structs or all interfaces
// Line: 6
partial class Foo
{ }
partial struct Foo
{ }
class X
{
static void Main ()
{ }
}