Comment on JVM exceptions are weird: a decompiler perspectiveparentComments−brunoborges10moIn JDK 25, you can run this code: $ cat App.java void main() { for (;;) { try { return; } finally { continue; } } } $ java App.java
Comments
In JDK 25, you can run this code: