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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
tests
/
gtest-478.cs
blob
fa1052fd798b0105a73bb4133b585ee953fd8592
1
using
System
;
2
3
interface
IA
4
{
5
void
Foo
();
6
}
7
8
interface
IG
<
T
> :
IA
9
{
10
void
GenFoo
();
11
}
12
13
class
M
:
IG
<
int
>
14
{
15
public void
Foo
()
16
{
17
}
18
19
public void
GenFoo
()
20
{
21
}
22
23
public static void
Main
()
24
{
25
IG
<
int
>
v
=
new
M
();
26
v
.
Foo
();
27
}
28
}