blob: 9e68c2f0ed7809d486c759b0c1058b40630efa4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// "@Before declared on advice"
// should be an error, check attr is on an ajc$ method and barf
import org.aspectj.lang.annotation.*;
aspect A{
@Before("call(* org..*(..))")
before(): call(* *(..)) {
}
}
|