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
Move Enum and CorElementType to shared (dotnet/coreclr#23177)
[mono-project.git]
/
mcs
/
tests
/
test-257.cs
blob
d095550c1f60faea2997d8550b59977ca5258b4b
1
class
X
{
2
public static void
Main
()
3
{
4
int
a
;
5
6
call
(
out
a
);
7
}
8
9
static void
call
(
out int
a
)
10
{
11
while
(
true
){
12
try
{
13
a
=
1
;
14
return
;
15
}
catch
{
16
}
17
}
18
}
19
}