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-325.cs
blob
318b904c46b393e521775c7399b9bd90539a5607
1
public class
SomeClass
<
T
>
where T
:
new
() {
2
public void
Foo
() {
3
new
T
();
4
}
5
}
6
7
class
Foo
{
8
public static void
Main
()
9
{
10
SomeClass
<
object
>
x
=
new
SomeClass
<
object
> ();
11
x
.
Foo
();
12
}
13
}