fork download
  1. class Ideone
  2. {
  3. public static void main(String[] args)
  4. {
  5. System.out.println(methodOfA());
  6. }
  7.  
  8. static int methodOfA()
  9. {
  10. return (true ? null : 0);
  11. }
  12. }
Runtime error #stdin #stdout #stderr 0.1s 320576KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Exception in thread "main" java.lang.NullPointerException
	at Ideone.methodOfA(Main.java:10)
	at Ideone.main(Main.java:5)