summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/binding/complexExample/X4.java
blob: de910fe0fc14905f7fb839bd1c72db4a3ae6e184 (plain)
1
2
3
4
5
6
7
8
9
10
import a.b.c.A;

public aspect X4 {

  // Error as Color not imported
  @org.aspectj.lang.annotation.SuppressAjWarnings before(A a): execution(@Color * A+.*(..)) && this(a) {
    System.err.println("Before call to "+thisJoinPoint);
  }

}