aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr241847/Asp.aj
blob: 9df7b7f7c7baf599f68027302dacb4892717ae94 (plain)
1
2
3
4
5
6
7
8
9
import java.util.Arrays;


public aspect Asp {
   before() : execution(* *(@Ann (*), ..)) {
      //System.out.println(thisJoinPoint.getSignature().toShortString() + ' ' + Arrays.asList(thisJoinPoint.getArgs()));
      throw new RuntimeException("expected exception");
   }
}