repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs0263.cs
blob
f5a4ad63caff4c1b3212f9eeaa838711f1810c1a
1
// CS0263: Partial declarations of `Foo' must not specify different base classes
2
// Line: 12
3
public class
Base
4
{ }
5
6
public class
OtherBase
7
{ }
8
9
public partial class
Foo
:
Base
10
{ }
11
12
public partial class
Foo
:
OtherBase
13
{ }
14
15
class
X
16
{
17
static void
Main
()
18
{ }
19
}