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

cs0263.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5a4ad63caff4c1b3212f9eeaa838711f1810c1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// CS0263: Partial declarations of `Foo' must not specify different base classes
// Line: 12
public class Base
{ }

public class OtherBase
{ }

public partial class Foo : Base
{ }

public partial class Foo : OtherBase
{ }

class X
{
	static void Main ()
	{ }
}