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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
gtest-414.cs
blob
20cd253fbbad1b9355ebda77dd1d9d40e78786c2
1
using
System
;
2
3
namespace
MonoTest
4
{
5
public class
MainClass
6
{
7
public static void
Main
()
8
{
9
}
10
}
11
12
public interface
ITest
13
{
14
void
Get
<
T
> (
object
o
);
15
}
16
17
public class
TestImpl
:
ITest
18
{
19
public void
Get
<
T
> ()
20
{
21
}
22
23
public void
Get
<
T
> (
object
o
)
24
{
25
}
26
27
void
ITest
.
Get
<
T
> (
object
o
)
28
{
29
}
30
}
31
32
interface
IG
<
T
>
33
{
34
void
M
();
35
}
36
37
class
C
:
IG
<
int
>,
IG
<
string
>
38
{
39
void
IG
<
int
>.
M
()
40
{
41
}
42
43
void
IG
<
string
>.
M
()
44
{
45
}
46
}
47
}
48