fork download
  1. public class Main {
  2. public static void main(String[] args) {
  3. int[] ints = new int[10];
  4. System.out.println("before out-of-bounds");
  5. System.out.flush();
  6. int a = ints[-1];
  7. }
  8. }
Runtime error #stdin #stdout #stderr 0.1s 320512KB
stdin
Standard input is empty
stdout
before out-of-bounds
stderr
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -1
	at Main.main(Main.java:6)