summaryrefslogtreecommitdiffstats
path: root/tests/bugs151/pr125475/TestEmptyPointcutAtAspect.java
blob: d249621b00ee04d8466ad9e1994cf70a2aa453c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;

@Aspect
public class TestEmptyPointcutAtAspect {

	@Pointcut("")
	protected void scope () {}
	
	@Pointcut
	protected void scope2() {}
}