blob: b236cde6a335dbad0b232438fb4a7a23cc2bd895 (
plain)
1
2
3
4
5
6
7
8
9
|
// "@AfterReturning with wrong number of args"
import org.aspectj.lang.annotation.*;
aspect A{
@AfterReturning(value="call(* *..*(..))",returning="f")
public void itsAFoo(Object f, int x) {
}
}
|