blob: d444561a95f12e783b8b74e51d77e6aad35e5238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// "@AdviceName given an empty string"
import org.aspectj.lang.annotation.*;
aspect A{
@SuppressAjWarnings
@AdviceName("")
before() : call(* org.aspectprogrammer..*(..)) {
System.out.println("Call from Foo");
}
}
|