fork(1) download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. new Foo<String>().bar(Integer.valueOf(123));
  9. }
  10. }
  11.  
  12. class Foo<E> {
  13. public <E> int bar(E e) { return 0; }
  14. }
Success #stdin #stdout 0.07s 380160KB
stdin
Standard input is empty
stdout
Standard output is empty