summaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/itds/bridgeMethods/X1.aj
blob: 2f085de6a60a42f52c7dcac861571b0ef339b111 (plain)
1
2
3
4
5
6
7
8
public aspect X1 {
  public static void main(String []argv) {
    Super1 s = new Sub1();
    Integer i = (Integer)s.m();

    Util.dumpMethods("Sub1");
  }
}