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: d87ff015e26f4a9b8098c7cac4c3e89897f73bdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0262: Partial declarations of 'Foo' have conflicting accessibility modifiers
// Line: 6
public partial class Foo
{ }

internal partial class Foo
{ }

class X
{
	static void Main ()
	{ }
}