summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0261.cs
blob: 3e0a9945e0521d5bb2081a5132b0dba8dfb45425 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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 ()
	{ }
}