fork download
  1.  
  2. public class Main {
  3.  
  4. public <T> Main(T a){
  5. Outer.<Integer> super(); //
  6. System.out.println(a);
  7. }
  8.  
  9. public static void main(String[] args){
  10. Main a = new Main(new Object());
  11. // printResult();
  12.  
  13. }
  14.  
  15. class Outer {
  16. public <T> Outer() {
  17. };
  18. }
  19. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:5: error: illegal qualifier; Object is not an inner class
		Outer.<Integer> super(); //
		     ^
1 error
stdout
Standard output is empty