aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-07-28 21:50:11 +0000
committerwisberg <wisberg>2003-07-28 21:50:11 +0000
commit10fb3c602d53d02377e80b45687cbbf0096d71dc (patch)
treeb40e4d350f2b01f19bef85061ff25a98ad5c9454 /tests/bugs
parent3aecb2745ebaa24c3f463c473161f2c1eed83f03 (diff)
downloadaspectj-10fb3c602d53d02377e80b45687cbbf0096d71dc.tar.gz
aspectj-10fb3c602d53d02377e80b45687cbbf0096d71dc.zip
@testcase PR#40858 weaver trace on mis-qualified pointcut reference
Diffstat (limited to 'tests/bugs')
-rw-r--r--tests/bugs/SuperPointcutCE.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/bugs/SuperPointcutCE.java b/tests/bugs/SuperPointcutCE.java
new file mode 100644
index 000000000..7231fb00e
--- /dev/null
+++ b/tests/bugs/SuperPointcutCE.java
@@ -0,0 +1,27 @@
+
+
+public class MissingTypeSigatureCE {
+ public static void main(String[] a) {
+ new C().run();
+ }
+}
+
+class C {
+ public void run(){ System.out.println("c");}
+}
+
+abstract aspect AA {
+ pointcut pc() : call(public * *(..)) && !within(AA+);
+ before() : pc() {
+ System.out.println("here: " + thisJoinPointStaticPart);
+ }
+}
+
+/** @testcase PR#40858 weaver trace on mis-qualified pointcut reference */
+aspect B extends AA {
+
+ pointcut pc() : super.pc()
+ && !call(void println(..));
+
+ pointcut blah() : UnknownType.pc(); // CE
+}