repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-12-09 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
gtest-318.cs
blob
7e8d071a895d54ee18be1ffb201f604562232fe1
1
// Bug #77963
2
public class
Foo
<
K
>
3
{
4
}
5
6
public class
Bar
<
Q
> :
Goo
<
Q
>
7
{
8
public class
Baz
9
{
10
}
11
}
12
13
public class
Goo
<
Q
> :
Foo
<
Bar
<
Q
>.
Baz
>
14
{
15
}
16
17
class
X
18
{
19
static void
Main
()
20
{
21
Bar
<
int
>
bar
=
new
Bar
<
int
> ();
22
System
.
Console
.
WriteLine
(
bar
);
23
}
24
}