blob: cfce502883058f32fe1184bdcc2a7c655c17a861 (
plain)
1
2
3
4
5
6
7
8
9
|
//"@Before advice with empty string"
import org.aspectj.lang.annotation.*;
aspect A{
@Before("") // this should compile I think, it's just Before advice for no pointcut
public void someCall(){
}
}
|