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
Fix all CreateInstance overloads for void
[mcs.git]
/
tests
/
gtest-317.cs
blob
6b956657c185e2595bf8ef0c7a3dc5982afdc95f
1
// Bug #77963
2
public class
Foo
<
K
>
3
{
4
}
5
6
public class
Bar
<
Q
> :
Foo
<
Bar
<
Q
>.
Baz
>
7
{
8
public class
Baz
9
{
10
}
11
}
12
13
class
X
14
{
15
static void
Main
()
16
{
17
Bar
<
int
>
bar
=
new
Bar
<
int
> ();
18
System
.
Console
.
WriteLine
(
bar
);
19
}
20
}