fork download
  1. class Uni {
  2. static class C implements I {}
  3. static interface I {}
  4. public static void main (String[] args) {
  5. I[] i = new I[2];
  6. i[0] = new C();
  7. System.out.println("Completed successfully.");
  8. }
  9. }
Success #stdin #stdout 0.08s 380224KB
stdin
Standard input is empty
stdout
Completed successfully.