summaryrefslogtreecommitdiffstats
path: root/tests/bugs/binaryCompat/TraceV2.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/binaryCompat/TraceV2.aj')
-rw-r--r--tests/bugs/binaryCompat/TraceV2.aj11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs/binaryCompat/TraceV2.aj b/tests/bugs/binaryCompat/TraceV2.aj
new file mode 100644
index 000000000..c71416af3
--- /dev/null
+++ b/tests/bugs/binaryCompat/TraceV2.aj
@@ -0,0 +1,11 @@
+aspect Trace {
+ public static boolean expectNoSuchMethodError = false;
+
+ before(): execution(void doit(..)) {
+ System.out.println("entering");
+ }
+
+ after() returning: execution(void doit(..)) {
+ System.out.println("exiting");
+ }
+} \ No newline at end of file