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
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
dtest-062.cs
blob
48fcac23da0dea4cc713911b215326c028f2b191
1
using
System
;
2
3
class
G
<
T
>
4
{
5
}
6
7
public class
Program
8
{
9
static void
Test
<
T
> (
G
<
G
<
T
>>
g
)
10
{
11
}
12
13
static void
Main
()
14
{
15
dynamic
d
=
new
G
<
G
<
int
>> ();
16
Test
(
d
);
17
}
18
}