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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
tests
/
gtest-011.cs
blob
8a4c09d3fe9dc0250faf0c0d93424b264be12a50
1
class
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
public static void
Main
()
17
{ }
18
}