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