fork download
  1. class Test {
  2. public static int test() {
  3. try {
  4. return 0;
  5. } finally {
  6. return 1;
  7. }
  8. }
  9.  
  10. public static void main (String[] args) {
  11. System.out.println(test());
  12. }
  13. }
Success #stdin #stdout 0.05s 2184192KB
stdin
Standard input is empty
stdout
1