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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
gtest-018.cs
blob
7a9ae513a58c951cfc535752991e820f41578cb7
1
public class
Stack
2
{
3
public
Stack
()
4
{ }
5
6
public void
Hello
<
T
> (
T t
)
7
{ }
8
}
9
10
public class
X
11
{
12
public static void
Foo
(
Stack stack
)
13
{
14
stack
.
Hello
<
string
> (
"Hello World"
);
15
}
16
17
public static void
Main
()
18
{
19
Stack stack
=
new
Stack
();
20
Foo
(
stack
);
21
}
22
}