diff options
author | jhugunin <jhugunin> | 2003-08-04 21:04:49 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-08-04 21:04:49 +0000 |
commit | 29457c3d6d0b4cd7cca1d2867e6bd80a56a24722 (patch) | |
tree | 39c61e209f18d80a32c50220199ffcd75e4f237b /tests/bugs/SuperPointcutCE.java | |
parent | 57445dd3ec8a67d06f16fe02e7c0eaefb8ea4051 (diff) | |
download | aspectj-29457c3d6d0b4cd7cca1d2867e6bd80a56a24722.tar.gz aspectj-29457c3d6d0b4cd7cca1d2867e6bd80a56a24722.zip |
fixes for Bugzilla Bug 40858
super-qualified pointcut reference cause weaver stack trace
and Bugzilla Bug 40814
no error when defining interface pointcuts
Diffstat (limited to 'tests/bugs/SuperPointcutCE.java')
-rw-r--r-- | tests/bugs/SuperPointcutCE.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bugs/SuperPointcutCE.java b/tests/bugs/SuperPointcutCE.java index 7231fb00e..be6111e16 100644 --- a/tests/bugs/SuperPointcutCE.java +++ b/tests/bugs/SuperPointcutCE.java @@ -1,6 +1,6 @@ -public class MissingTypeSigatureCE { +public class SuperPointcutCE { public static void main(String[] a) { new C().run(); } @@ -20,7 +20,7 @@ abstract aspect AA { /** @testcase PR#40858 weaver trace on mis-qualified pointcut reference */ aspect B extends AA { - pointcut pc() : super.pc() + pointcut pc() : super.pc() // CE super not allowed in 1.1 && !call(void println(..)); pointcut blah() : UnknownType.pc(); // CE |