fork download
  1. class Ideone {
  2. static <T> void foo(T t) {
  3. println "foo"
  4. }
  5. static void main(String[] args) {
  6. Ideone.<Integer>foo(1)
  7. }
  8. }
  9.  
Success #stdin #stdout 1.89s 123828KB
stdin
Standard input is empty
stdout
foo