diff options
author | aclement <aclement> | 2006-10-19 14:05:02 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-10-19 14:05:02 +0000 |
commit | 044542c6d5996806ce29156e83e1725823f5f8fe (patch) | |
tree | cc7047618a120440236e9e5aa697e1df2a45e693 /tests/bugs153 | |
parent | db68044fe8ea0f43a5e090a67b9410f4c334bff6 (diff) | |
download | aspectj-044542c6d5996806ce29156e83e1725823f5f8fe.tar.gz aspectj-044542c6d5996806ce29156e83e1725823f5f8fe.zip |
test and fix for 161217
Diffstat (limited to 'tests/bugs153')
-rw-r--r-- | tests/bugs153/pr161217/AtAspectJAspect.java | 13 | ||||
-rw-r--r-- | tests/bugs153/pr161217/C.java | 9 |
2 files changed, 22 insertions, 0 deletions
diff --git a/tests/bugs153/pr161217/AtAspectJAspect.java b/tests/bugs153/pr161217/AtAspectJAspect.java new file mode 100644 index 000000000..7194bb0aa --- /dev/null +++ b/tests/bugs153/pr161217/AtAspectJAspect.java @@ -0,0 +1,13 @@ +package pkg; + +import org.aspectj.lang.annotation.Aspect; +import org.aspectj.lang.annotation.Before; + +@Aspect() +public class AtAspectJAspect { + + @Before("execution(* *.*())") + public void execOfEverything() { + } + +} diff --git a/tests/bugs153/pr161217/C.java b/tests/bugs153/pr161217/C.java new file mode 100644 index 000000000..3bbd052f3 --- /dev/null +++ b/tests/bugs153/pr161217/C.java @@ -0,0 +1,9 @@ +package pkg; + +public class C { + + public void foo() { + + } + +} |