aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/ataspectj/coverage/Test033.java
blob: 5beab81f696195e40bfb15f550b5241f734ed527 (plain)
1
2
3
4
5
6
7
8
// "@Before on Interface method"

import org.aspectj.lang.annotation.*;

interface A{
	  @Before("call(* *.*(..))")
	  void someCall();
}