summaryrefslogtreecommitdiffstats
path: root/tests/base/OneArgCallsIsOkay.java
blob: c0e7916a709e1b4fd23f51e398659fde21e35434 (plain)
1
2
3
4
5
6
7
//allow one argument calls even when there's a comma in the arglist (PR#384)

public class OneArgCallsIsOkay {
    public static void main(String[] args) {}
    static void foo(int x, int y) {}
    pointcut cut(): call(void OneArgCallsIsOkay.foo(int, int));
}