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
[tuner] handle the case with multiple "preserve" attributes
[mono-project.git]
/
mcs
/
tests
/
gtest-275.cs
blob
acadfffe0d91bcc10c88e96486965a7d5ae187d4
1
using
System
;
2
using
System
.
Collections
;
3
using
System
.
Collections
.
Generic
;
4
5
public class
Test
6
{
7
public class
C
8
{
9
public
C
()
10
{
11
Type t
=
typeof
(
Dictionary
<,>);
12
}
13
}
14
15
public class
D
<
T
,
U
>
16
{
17
public
D
()
18
{
19
Type t
=
typeof
(
Dictionary
<,>);
20
}
21
}
22
23
public class
E
<
T
>
24
{
25
public
E
()
26
{
27
Type t
=
typeof
(
Dictionary
<,>);
28
}
29
}
30
31
public static void
Main
()
32
{
33
new
C
();
34
new
D
<
string
,
string
>();
35
new
E
<
string
>();
36
}
37
}
38