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
2010-02-20 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-325.cs
blob
d6bfe8eb072bc0a8e8916692546fe3b3ec3a3a45
1
public class
SomeClass
<
T
>
where T
:
new
() {
2
public void
Foo
() {
3
new
T
();
4
}
5
}
6
7
class
Foo
{
8
static void
Main
()
9
{
10
SomeClass
<
object
>
x
=
new
SomeClass
<
object
> ();
11
x
.
Foo
();
12
}
13
}