Skip to content

Instantly share code, notes, and snippets.

@benjholla
Created September 19, 2018 16:37
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Java Puzzle 9 (spot the bug if one exists)
public class Puzzle9 {
public static void main(String[] args) {
recurse();
}
private static void recurse() {
try {
recurse();
} finally {
recurse();
}
}
}
@benjholla
Copy link
Author

Adapted from Java Puzzlers: Traps, Pitfalls, and Corner Cases - Puzzle #45

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment