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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
gtest-619.cs
blob
63bc79c5958826d7de8330498ea91276efce54c7
1
interface
I
<
T
>
2
{
3
}
4
5
interface
IB
<
T
> :
I
<
string
>
6
{
7
8
}
9
10
struct
S
11
{
12
class
P
13
{
14
}
15
16
public class
C
:
IB
<
P
>
17
{
18
}
19
}
20
21
class
M
22
{
23
static void
Test
<
T
> (
I
<
T
>
iface
)
24
{
25
}
26
27
static void
Test
<
T
> (
IB
<
T
>
iface
)
28
{
29
}
30
31
static void
Main
()
32
{
33
Test
(
new
S
.
C
());
34
}
35
}