fork download
  1. public class Main
  2. {
  3. public static void main(String ... args)
  4. {
  5. System.err.println(0.0/0.0 instanceof double);
  6. }
  7. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:5: unexpected type
found   : double
required: reference
System.err.println(0.0/0.0 instanceof double);
                      ^
Main.java:5: unexpected type
found   : double
required: class or array
System.err.println(0.0/0.0 instanceof double);
                                      ^
2 errors
stdout
Standard output is empty