repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
libjava
/
testsuite
/
libjava.lang
/
G19990310_01.java
blob
72caece57f4c28fcc98bdfab758a8a9e07c6e0c9
1
public class
G19990310_01
2
{
3
public static void
main
(
String
[]
args
)
4
{
5
int
i
=
0
;
6
try
7
{
8
System
.
out
.
println
(
"pass 1"
);
9
i
++;
10
}
11
finally
12
{
13
System
.
out
.
println
(
"pass 2"
);
14
i
++;
15
}
16
if
(
i
==
2
)
17
System
.
out
.
println
(
"OK"
);
18
else
19
System
.
out
.
println
(
"NG i = "
+
i
);
20
}
21
}