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
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-258.cs
blob
714a1a7851a438a6c0e70ccb22882165cb83d3ac
1
using
System
;
2
3
public class
A
4
{
5
public
A
()
6
{ }
7
}
8
9
public class
B
10
{ }
11
12
class
Foo
<
T
>
13
where T
:
new
()
14
{ }
15
16
class
X
17
{
18
static void
Main
()
19
{
20
Foo
<
A
>
foo
=
new
Foo
<
A
> ();
21
}
22
}