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-12-09 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
gtest-020.cs
blob
d8f4992d5efd121fc8b9cf2807cf89dce0d15ed7
1
struct
Stack
<
S
>
2
{
3
public void
Hello
(
S s
)
4
{ }
5
}
6
7
class
X
8
{
9
Stack
<
int
>
stack
;
10
11
void
Test
()
12
{
13
stack
.
Hello
(
3
);
14
}
15
16
static void
Main
()
17
{ }
18
}