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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
test-partial-04.cs
blob
1070fb77b8f2a1b8636650a7639f8bc14be52b24
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
public static void
Main
()
31
{ }
32
}