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
cosmetic
[mcs.git]
/
tests
/
test-partial-04.cs
blob
3158d8e5cc56754bf534ae16e5ac364a78e861f1
1
// Compiler options: -langversion:default
2
3
namespace
A
4
{
5
interface
IFoo
6
{
7
void
Hello
(
IFoo foo
);
8
}
9
}
10
11
namespace
B
12
{
13
partial class
Test
14
{ }
15
}
16
17
namespace
B
18
{
19
using
A
;
20
21
partial class
Test
:
IFoo
22
{
23
void
IFoo
.
Hello
(
IFoo foo
)
24
{ }
25
}
26
}
27
28
class
X
29
{
30
static void
Main
()
31
{ }
32
}