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
[tuner] handle the case with multiple "preserve" attributes
[mono-project.git]
/
mcs
/
tests
/
gtest-020.cs
blob
d1a0ee0f0d43f4d41ab267ac9bb1aa5706ef8b7b
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
public static void
Main
()
17
{ }
18
}