summaryrefslogtreecommitdiffstats
path: root/tests/features164/declareMixin/CaseI.java
blob: e8704025014166a8228e47d57e01e811d161143b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// TESTING: invalid entry in interfaces
import org.aspectj.lang.annotation.*;

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

aspect X {
  @DeclareMixin(value="X",interfaces={String.class})
  public static I createImplementation() {
    return null;
  }
}

interface I {}