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

cs0260.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a8a90ed3359f798eee3d147cd0b2c2d3dcc4530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0260.cs: Missing partial modifier on declaration of type `Foo'. Another partial declaration of this type exists
// Line: 3
public class Foo
{ }

public partial class Foo
{ }

class X
{
	static void Main ()
	{ }
}