aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/pr351592_2/FibCaching.aj
blob: 6e1b1da7997cd0083b9a135e4f00acb5a8d975d3 (plain)
1
2
3
4
5
6
7
8
package caching;

public aspect FibCaching extends Caching<Integer,Integer> {
	
	pointcut cached() : execution(int Fib.calc(int));
	
}