blob: 642d713acc1084bb6cfb39e1eacc0edc4f4f87be [file] [log] [blame]
public aspect Client extends Library {
pointcut stuff(): execution(* *.main(..));
after(): stuff() { }
}