fork(1) download
  1.  
  2. import java.util.*;
  3. import java.lang.*;
  4. import java.io.*;
  5.  
  6.  
  7. class Ideone
  8. {
  9. public static void main (String[] args) throws java.lang.Exception
  10. {
  11. Object o = new Problematic();
  12.  
  13. // unreachable
  14.  
  15. }
  16. }
  17.  
  18. class Problematic
  19. {
  20. static
  21. {
  22. throw new RuntimeException();
  23. }
  24. }
  25.  
Compilation error #stdin compilation error #stdout 0.04s 711168KB
stdin
Standard input is empty
compilation info
Main.java:20: error: initializer must be able to complete normally
	static 
	^
1 error
stdout
Standard output is empty