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: 2d0d3c52b6b9870f21f1d0219ffbf07b5dfddfbb (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: 6
public partial class Foo
{ }

public class Foo
{ }

class X
{
	static void Main ()
	{ }
}