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-460.cs
blob
acd2b1899f8fef27f088a3db54a0480e2b161dee
1
public class
Foo
<
T
>
2
{
3
protected class
Bar
<
V
>
4
{
5
}
6
}
7
8
public interface
IBaz
9
{
10
}
11
12
public class
FooImpl
:
Foo
<
IBaz
>
13
{
14
Bar
<
int
>
f
;
15
16
private class
BarImpl
:
Bar
<
IBaz
>
17
{
18
}
19
20
public static int
Main
()
21
{
22
new
FooImpl
();
23
return
0
;
24
}
25
}