summaryrefslogtreecommitdiffstats
path: root/tests/java5/covariance/CovAspect09.aj
blob: aad549dd33032dee56a553335414b2d2ebaf4e7e (plain)
1
2
3
4
5
6
7
8
9
10
11
aspect CovAspect09 {
	
  pointcut p1(): call(FastCar Super.getCar());

  @org.aspectj.lang.annotation.SuppressAjWarnings
  before(): p1() {
  	System.out.println("[call(FastCar Super.getCar()) matched on '"+thisJoinPoint+":"+thisJoinPoint.getSourceLocation()+"']");
  }
  
}