diff options
author | aclement <aclement> | 2006-08-03 07:23:55 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-08-03 07:23:55 +0000 |
commit | 9664058bcdaeb4934a01969f4e5f651bc6e8cd71 (patch) | |
tree | b74e2bb75ccce05f56f7725d7119472515a5c332 /tests/multiIncremental/PR152589 | |
parent | 9b96943ffeac0c120464cc268a0cd98b7667869c (diff) | |
download | aspectj-9664058bcdaeb4934a01969f4e5f651bc6e8cd71.tar.gz aspectj-9664058bcdaeb4934a01969f4e5f651bc6e8cd71.zip |
test and fix for 152589: adviceDidNotMatch incorrectly appearing
Diffstat (limited to 'tests/multiIncremental/PR152589')
-rw-r--r-- | tests/multiIncremental/PR152589/base/A.aj | 13 | ||||
-rw-r--r-- | tests/multiIncremental/PR152589/inc1/A.aj | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/tests/multiIncremental/PR152589/base/A.aj b/tests/multiIncremental/PR152589/base/A.aj new file mode 100644 index 000000000..fd2f78695 --- /dev/null +++ b/tests/multiIncremental/PR152589/base/A.aj @@ -0,0 +1,13 @@ + + +public aspect A { + after () throwing (Throwable th) : execution(* *(..)) { + System.err.println(thisEnclosingJoinPointStaticPart); + } +} + +class C1 { + public void anotherMethod() { + + } +} diff --git a/tests/multiIncremental/PR152589/inc1/A.aj b/tests/multiIncremental/PR152589/inc1/A.aj new file mode 100644 index 000000000..a2ebf78c5 --- /dev/null +++ b/tests/multiIncremental/PR152589/inc1/A.aj @@ -0,0 +1,13 @@ + + +public aspect A { + after () throwing (Throwable th) : execution(* *(..)) { + System.err.println(thisEnclosingJoinPointStaticPart); + } +} + +class C1 { + public void anotherMethod() { + + } +} |