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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
gtest-147.cs
blob
cc85965df4e2cf998e51af08d3be565610406ac6
1
namespace
A
2
{
3
interface
IFoo
4
{
5
void
Hello
(
IFoo foo
);
6
}
7
}
8
9
namespace
B
10
{
11
partial class
Test
<
T
> :
IDoo
,
A
.
IFoo where T
:
A
.
IFoo
12
{ }
13
}
14
15
namespace
B
16
{
17
using
A
;
18
19
partial class
Test
<
T
> :
Y
,
IFoo where T
:
IFoo
20
{
21
void
IFoo
.
Hello
(
IFoo foo
)
22
{ }
23
}
24
}
25
26
interface
IDoo { }
27
28
class
Y { }
29
30
class
X
31
{
32
public static void
Main
()
33
{ }
34
}
35
36
37
38