blob: ab4c427e310488c962251552cac67a12aae2d0bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// "@Pointcut on non-aspect class method"
// I dont think this test is valid, you can have pointcuts in classes
import org.aspectj.lang.annotation.*;
class A{
@Pointcut("call(* *.*(..))")
void someCall(){
}
}
|