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
add comment
[mcs.git]
/
tests
/
gtest-017.cs
blob
b04dc471140dedad6fb0381ed1612c358f3da02e
1
// Compiler options: -r:gtest-017-lib.dll
2
3
public class
X
4
{
5
public static void
Foo
(
Stack stack
)
6
{
7
stack
.
Hello
<
string
> (
"Hello World"
);
8
}
9
10
static void
Main
()
11
{
12
Stack stack
=
new
Stack
();
13
Foo
(
stack
);
14
}
15
}