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
/
test-508.cs
blob
17b1415d061626f28d4c49f88062c0df49638fea
1
using
System
;
2
3
class
OutputParam
4
{
5
public static void
Main
(
string
[]
args
)
6
{
7
int
a
;
8
Method
(
out
a
);
9
Console
.
WriteLine
(
a
);
10
}
11
12
public static void
Method
(
out int
a
)
13
{
14
int
b
;
15
16
try
{
17
b
=
5
;
18
return
;
19
}
finally
{
20
a
=
6
;
21
}
22
}
23
}