fork download
  1. public class Main {
  2.  
  3. class A<T> {}
  4. class B<T extends I> extends A<T> {}
  5. interface I {}
  6.  
  7. public static void main(String[] args) throws Exception {
  8. System.out.println(System.getProperty("java.version"));
  9. System.out.println("End");
  10. }
  11. }
  12.  
Success #stdin #stdout 0.09s 54612KB
stdin
Standard input is empty
stdout
12.0.1
End