diff options
author | acolyer <acolyer> | 2003-09-19 08:16:17 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2003-09-19 08:16:17 +0000 |
commit | 53570863fa77364052937376a0ff65ce2fa37842 (patch) | |
tree | 80bf1404427ee613b4c4a9ffb3c2ffcdfdc4e17c /tests/bugs/concretizeNpe/base/ExceptionHandling.java | |
parent | fc0d2af02cc6b6f8a4d9425e3c1cdd166957dde9 (diff) | |
download | aspectj-53570863fa77364052937376a0ff65ce2fa37842.tar.gz aspectj-53570863fa77364052937376a0ff65ce2fa37842.zip |
bug 43033 - NPE in concretize error path for ReferencePointcut
Diffstat (limited to 'tests/bugs/concretizeNpe/base/ExceptionHandling.java')
-rw-r--r-- | tests/bugs/concretizeNpe/base/ExceptionHandling.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bugs/concretizeNpe/base/ExceptionHandling.java b/tests/bugs/concretizeNpe/base/ExceptionHandling.java new file mode 100644 index 000000000..5f63ad61a --- /dev/null +++ b/tests/bugs/concretizeNpe/base/ExceptionHandling.java @@ -0,0 +1,6 @@ +package base; + +public abstract aspect ExceptionHandling { + public abstract pointcut scope(); + declare soft: Exception: scope(); +} |