aboutsummaryrefslogtreecommitdiffstats
path: root/tests/options/aspectpath
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-03-23 16:47:55 +0000
committeracolyer <acolyer>2005-03-23 16:47:55 +0000
commit68f63508828d1c1ea7076d051cc77713625f6a03 (patch)
tree40e125609a1fbfe8423f7e439d88da6b997668c4 /tests/options/aspectpath
parentef3044a08dd1e5556c03e614ce8d799d61aaf041 (diff)
downloadaspectj-68f63508828d1c1ea7076d051cc77713625f6a03.tar.gz
aspectj-68f63508828d1c1ea7076d051cc77713625f6a03.zip
fix for Bug 84122 - Allow aspectPath to contain directories
Diffstat (limited to 'tests/options/aspectpath')
-rw-r--r--tests/options/aspectpath/MyAspect.aj5
-rw-r--r--tests/options/aspectpath/MyClass.java5
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/options/aspectpath/MyAspect.aj b/tests/options/aspectpath/MyAspect.aj
new file mode 100644
index 000000000..4b2c632d7
--- /dev/null
+++ b/tests/options/aspectpath/MyAspect.aj
@@ -0,0 +1,5 @@
+public aspect MyAspect {
+
+ declare warning : execution(* *(..)) : "a method";
+
+} \ No newline at end of file
diff --git a/tests/options/aspectpath/MyClass.java b/tests/options/aspectpath/MyClass.java
new file mode 100644
index 000000000..ef0d28767
--- /dev/null
+++ b/tests/options/aspectpath/MyClass.java
@@ -0,0 +1,5 @@
+public class MyClass {
+
+ void foo() {}
+
+} \ No newline at end of file