aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr169428/CorrectError.java
blob: 5677c42919ef7872484018b44943b3f143a07fe2 (plain)
1
2
3
4
5
6
7
8
import org.aspectj.lang.annotation.*;

class ClassMissingAspectAnnotation {

	@Before("execution(* *(..))")
	public void m() { }

}