summaryrefslogtreecommitdiffstats
path: root/tests/java5/covariance/CovAspect03.aj
blob: 551c4b61364d837c074a4818460bab9cff696ad8 (plain)
1
2
3
4
5
6
7
8
9
10
aspect CovAspect03 {
	
  pointcut p(): call(Car getCar());

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