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-05-19 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
gtest-093.cs
blob
b9f4b614e7368af67624c3ee7eff78e89fd3d039
1
using
System
;
2
3
public class
Foo
<
T
>
4
{
5
public readonly
T Item
;
6
7
public
Foo
(
T item
)
8
{
9
this
.
Item
=
item
;
10
}
11
12
static void
maketreer
(
out
Node rest
)
13
{
14
rest
=
new
Node
();
15
}
16
17
class
Node
18
{ }
19
20
public void
Hello
<
U
> ()
21
{
22
Foo
<
U
>.
Node node
;
23
Foo
<
U
>.
maketreer
(
out
node
);
24
}
25
}
26
27
class
X
28
{
29
static void
Main
()
30
{ }
31
}