You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OneArgCallsIsOkay.java 260B

1234567
  1. //allow one argument calls even when there's a comma in the arglist (PR#384)
  2. public class OneArgCallsIsOkay {
  3. public static void main(String[] args) {}
  4. static void foo(int x, int y) {}
  5. pointcut cut(): call(void OneArgCallsIsOkay.foo(int, int));
  6. }