blob: b156139ba8e004ec1660278ffcc7299d146d453f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// "@Pointcut declared on codestyle advice"
// Should have got a message about not allowing @Pointcut on advice
import org.aspectj.lang.annotation.*;
aspect A{
@Pointcut("call(* *.*(..))")
before(): call(* *(..)) {
}
}
|