--- pack.TestGen --------------------------------------------------------------
public class TestGen<A extends Number, B extends Exception & Comparable<B>> extends Object {
  public A field;
  public TestGen();
  public static <T extends Object & Comparable<? extends T>> void f_extends(T);
  public static <T extends Object & Comparable<?>> void f_star(T);
  public static <T extends Object & Comparable<? super T>> void f_super(T);
}
--- pack.TestAnnot ------------------------------------------------------------
@Deprecated
public class TestAnnot extends Object {
  public TestAnnot();
  @Deprecated
  public static void f();
  @MyAnnotation(a="xyz", b=2.0, c=[5], e=MyAnnotation.E.E3)
  public static void g();
}
--- pack.TestDasm -------------------------------------------------------------
public class TestDasm extends Object {
  private static int COUNTER;
  private static final float FIELD;
  private final int id;
  static ();
  public TestDasm();
  public static int f(boolean, int, float);
  public int sum(int...);
  public long g(int);
}
