summaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/pr351592_2/FibCaching.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs1612/pr351592_2/FibCaching.aj')
-rw-r--r--tests/bugs1612/pr351592_2/FibCaching.aj8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs1612/pr351592_2/FibCaching.aj b/tests/bugs1612/pr351592_2/FibCaching.aj
new file mode 100644
index 000000000..6e1b1da79
--- /dev/null
+++ b/tests/bugs1612/pr351592_2/FibCaching.aj
@@ -0,0 +1,8 @@
+package caching;
+
+public aspect FibCaching extends Caching<Integer,Integer> {
+
+ pointcut cached() : execution(int Fib.calc(int));
+
+}
+