aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/genericaspects/GenericAspect2.aj
blob: 8d2ca6a9cf63dcf4559147d4edded63cbf544719 (plain)
1
2
3
4
5
6
7
8
9
// illegal, super aspect is not abstract

public aspect GenericAspect2<S,T> {

  public void doSomething(S s,T t) { }

}

aspect Sub extends GenericAspect2<String,String> { }