Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0260-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d010784e61a9e420f13e30c44f6c827efcd2fbd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0260-2.cs: 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 ()
	{ }
}