From f6034581d8540124494806a7c6b3ad37ead2b6c3 Mon Sep 17 00:00:00 2001 From: aclement Date: Mon, 9 May 2005 11:08:28 +0000 Subject: tests and fixes for 93345 and static imports. From Andrew Huff. --- tests/bugs150/PR93345.aj | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/bugs150/PR93345.aj (limited to 'tests/bugs150/PR93345.aj') 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 -- cgit v1.2.3