summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0260-2.cs
blob: 3e7040b70d8f946278f6cafab6d76f4a3ac685d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0260: Missing partial modifier on declaration of type `Foo'. Another partial declaration of this type exists
// Line: 6
public partial class Foo
{ }

public class Foo
{ }

class X
{
	static void Main ()
	{ }
}