aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/ataspectj/coverage/Test024.java
blob: c011bee8e70c864e2d85bdc8430df784eb792452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// "@DeclareParents implementing more than one interface"

import org.aspectj.lang.annotation.*;

class A{
}
interface D{
}
interface E{
}
Aspect B{
  @DeclareParents("A")
  class C implements D, E{
  }
}