diff options
author | aclement <aclement> | 2008-06-11 21:43:39 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-06-11 21:43:39 +0000 |
commit | 704e1ad70b52b1733627a200d7f181eb16023d79 (patch) | |
tree | 10837e21b6e1c41555d9db2b23e60d7e60b634d8 /tests/bugs161/pr234933 | |
parent | 0ed0600a2bb9c08b530120ffbf9b18dad613a108 (diff) | |
download | aspectj-704e1ad70b52b1733627a200d7f181eb16023d79.tar.gz aspectj-704e1ad70b52b1733627a200d7f181eb16023d79.zip |
234933: test and partial fix, just for adviceDidNotMatch so far.
Diffstat (limited to 'tests/bugs161/pr234933')
-rw-r--r-- | tests/bugs161/pr234933/Foobar.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs161/pr234933/Foobar.java b/tests/bugs161/pr234933/Foobar.java new file mode 100644 index 000000000..1d3071df6 --- /dev/null +++ b/tests/bugs161/pr234933/Foobar.java @@ -0,0 +1,8 @@ +package p1; + +import org.aspectj.lang.annotation.SuppressAjWarnings; + +@SuppressAjWarnings +public aspect Foobar { + before(): execution(* *(..)) {} +} |