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
/
pr13107.java
blob
06d4c54bbb318ab0b31395231c0bf6b9b129baaf
1
class
pr13107
2
{
3
public static void
main
(
String
[]
args
)
4
{
5
for
(
int
i
=
0
;
i
<
1
;
i
++) {
6
String s
=
"A"
;
7
8
if
(
s
==
"A"
)
9
continue
;
10
11
try
{
12
try
{
13
System
.
out
.
println
(
s
);
14
}
15
finally
{
16
if
(
s
!=
"A"
)
17
throw new
Error
();
18
}
19
}
20
catch
(
Exception e
){
21
s
=
"B"
;
22
}
23
}
24
}
25
}