aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs170/pr376351/RAj.java
blob: 78c21221e1a5d0231f0b3a2a48932a0949407672 (plain)
1
2
3
4
5
6
7
8
9
public aspect RAj
{
    pointcut createR() : call(R.new()) && !within(RAj);
    Object around() : createR()
    {
        System.out.println("aspect running");
        return new R1();
    }
}