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: 20e9a456b182df644c5b3d00209a18c6800572a7 (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 implementation of this type exists
// Line: 3
public class Foo
{ }

public partial class Foo
{ }

class X
{
	static void Main ()
	{ }
}