aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/covariance/CovAspect05.aj
blob: 268b179b090a3f6547acff9afaecfbac24b307df (plain)
1
2
3
4
5
6
7
8
9
10
aspect CovAspect05 {
	
  pointcut p(): call(Car Super.getCar());

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