aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/PR93345.aj
diff options
context:
space:
mode:
authoraclement <aclement>2005-05-09 11:08:28 +0000
committeraclement <aclement>2005-05-09 11:08:28 +0000
commitf6034581d8540124494806a7c6b3ad37ead2b6c3 (patch)
tree158298c44f78ba53dfb1cd95ccde8c1f01cafa87 /tests/bugs150/PR93345.aj
parent51c018d9bbf0ecfb312cb2b56112c71cfc516c53 (diff)
downloadaspectj-f6034581d8540124494806a7c6b3ad37ead2b6c3.tar.gz
aspectj-f6034581d8540124494806a7c6b3ad37ead2b6c3.zip
tests and fixes for 93345 and static imports. From Andrew Huff.
Diffstat (limited to 'tests/bugs150/PR93345.aj')
-rw-r--r--tests/bugs150/PR93345.aj12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/bugs150/PR93345.aj b/tests/bugs150/PR93345.aj
new file mode 100644
index 000000000..4950aa6e9
--- /dev/null
+++ b/tests/bugs150/PR93345.aj
@@ -0,0 +1,12 @@
+// "XLint warning for advice not applied with cflow(execution)"
+
+class AClass {
+}
+
+aspect AnAspect {
+ pointcut a() : cflow( execution(* *(..)) );
+
+ before() : a() {
+ System.out.println("before a");
+ }
+} \ No newline at end of file