aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features164/declareMixin/CaseH.java
blob: 11a840da1ed36622681e71def27c8eb3d8a70fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// TESTING: null target for mixin
import org.aspectj.lang.annotation.*;

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

aspect X {
  @DeclareMixin(null)
  public static I createImplementation() {
    return null;
  }
}

interface I {}