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

cs0262.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d2751fe0a118ff276dc524919e6f4bd66901d3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0262.cs: Partial declarations of `Foo' have conflicting accessibility modifiers
// Line: 6
public partial class Foo
{ }

internal partial class Foo
{ }

class X
{
	static void Main ()
	{ }
}