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-604.cs
blob
7b142a6c96aa07fd2228bdeec42f453d127998db
1
class
A
<
T
>
2
{
3
public interface
IB { }
4
}
5
6
class
E
:
A
<
int
>.
IB
,
A
<
string
>.
IB
7
{
8
public static void
Main
()
9
{
10
new
E
();
11
}
12
}