blob: b59c62bdd4f7e41012704a3680d37572eb6826db (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// "@Pointcut with non-empty method body"
import org.aspectj.lang.annotation.*;
@Aspect
class A{
@Pointcut("call(* *.*(..))")
void someCall(){
System.out.println("whoops");
}
}
|