fix dfa offset management when handling possible exceptions in finally

This commit is contained in:
peter
2013-09-30 14:49:48 +02:00
parent 25961fca03
commit cebb5b8936
3 changed files with 25 additions and 1 deletions
@@ -0,0 +1,21 @@
import java.io.*;
class Foo {
public void read() {
try {
final FileInputStream input = new FileInputStream(new File("foo"));
try {
}
finally {
input.close();
}
}
catch (FileNotFoundException ignored) {
}
catch (IOException e) {
}
}
}