summaryrefslogtreecommitdiffstats
path: root/tests/features164/declareMixin/CaseK.java
blob: c41d7363bfd18d18e3b497f4030e7a337554704f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// TESTING: too many arguments to the factory method
import org.aspectj.lang.annotation.*;

public class CaseK {
  public static void main(String[]argv) { }
}

aspect X {
  @DeclareMixin("A")
  public static I createImplementation1(String s,long foo) {return null;}

}

interface I {}