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.

CaseK.java 286B

123456789101112131415
  1. // TESTING: too many arguments to the factory method
  2. import org.aspectj.lang.annotation.*;
  3. public class CaseK {
  4. public static void main(String[]argv) { }
  5. }
  6. aspect X {
  7. @DeclareMixin("A")
  8. public static I createImplementation1(String s,long foo) {return null;}
  9. }
  10. interface I {}