diff options
Diffstat (limited to 'tests/java5/ataspectj/coverage/Test016.java')
-rw-r--r-- | tests/java5/ataspectj/coverage/Test016.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/java5/ataspectj/coverage/Test016.java b/tests/java5/ataspectj/coverage/Test016.java new file mode 100644 index 000000000..eccddda1a --- /dev/null +++ b/tests/java5/ataspectj/coverage/Test016.java @@ -0,0 +1,9 @@ +// "@Pointcut with throws clause" + +import org.aspectj.lang.annotation.*; + +@Aspect +class A{ + @Pointcut("call(* *.*(..))") + void someCall() throws Exception {} +} |