aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs192/535156/DemoApp.java
blob: 0f25c1568435242356d5398c70d4f45af99500c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import org.aspectj.lang.annotation.*;

public class DemoApp {
	public static void main(String[]argv) {}
    private void recurseInsteadOfWhile() {
        say();
    }

    public void say() { }
}

aspect X { // mixed style here...
    @Around("call(public void DemoApp+.say(..))")
    public void y() {}
}