empty dfa stack when going to catch or finally in control flow

This commit is contained in:
peter
2012-04-18 12:07:42 +02:00
parent 304d46bb96
commit a58fdb1991
3 changed files with 15 additions and 0 deletions
@@ -0,0 +1,12 @@
public class Bar {
public static void main(String[] args) {
for (String s : args) {
try {
System.out.println(s);
}
catch (Exception e) {
System.out.println(e);
}
}
}
}