fork download
  1. class Example {
  2. public static void main(String[] args) {
  3. for (;;) {
  4. return;
  5. int x = 1; // doesn't compile, because the code can never be run
  6. }
  7. }
  8. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:5: error: unreachable statement
            int x = 1; // doesn't compile, because the code can never be run
                ^
1 error
stdout
Standard output is empty