repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add comment
[mcs.git]
/
tests
/
test-partial-05.cs
blob
e097bfc7864f89685516203f0db68fd9463936f7
1
// Compiler options: -langversion:default
2
3
class
B
{
4
}
5
6
interface
iface
{
7
}
8
9
partial class
A
:
B
{
10
}
11
12
partial class
A
:
iface
{
13
}
14
15
16
partial class
A2
:
System
.
Object
{
17
}
18
19
partial class
A2
{
20
}
21
22
class
D { static void Main () {}
}