summaryrefslogtreecommitdiffstats
path: root/tests/java5/covariance/CovAspect10.aj
blob: 158a3e1e29bdbc877b6b02a168de51ed1107332d (plain)
1
2
3
4
5
6
7
8
9
10
aspect CovAspect10 {
	
  pointcut p1(): call(Car+ getCar());

  before(): p1() {
  	System.out.println("[call(Car+ getCar()) matched on '"+thisJoinPoint+":"+thisJoinPoint.getSourceLocation()+"']");
  }
  
}