* configure.ac: Use AC_PROG_FC, FC and FCFLAGS instead of
[official-gcc.git] / libjava / testsuite / libjava.lang / pr13107.java
blob06d4c54bbb318ab0b31395231c0bf6b9b129baaf
1 class pr13107
3 public static void main(String[] args)
5 for (int i = 0; i < 1; i++) {
6 String s = "A";
8 if (s == "A")
9 continue;
11 try{
12 try{
13 System.out.println(s);
15 finally{
16 if (s != "A")
17 throw new Error();
20 catch(Exception e){
21 s = "B";