1 2 3 4 5
public aspect Aspect { void around(): call(* Def.def(..)) { System.out.println("aspect"); } }