Home | History | Annotate | Download | only in tests
      1 package annotator.tests;
      2 
      3 import java.util.Comparator;
      4 import java.util.Date;
      5 import java.util.List;
      6 
      7 public class BoundMethodSimple {
      8   public <T extends Date> void foo(T t) {
      9     System.out.println(t);
     10   }
     11 
     12   public <T> void foo2(T t) {
     13     System.out.println(t);
     14   }
     15 
     16   public static <T> void
     17   foo3(List<T> list, Comparator<? super T> c) {
     18   }
     19 }
     20 
     21