summaryrefslogtreecommitdiffstats
path: root/tests/bugs165/pr272233/Iffy.java
blob: dc0f88c40deb7bbb0b6d93ad815dbabdc8c42470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.util.*;
import org.aspectj.lang.annotation.*;

@Aspect 
class A {
@Pointcut("execution(!void<?>[] *(..))") 
void pointCutError() {}

  @Before("pointCutError()")
  public void m() {}
}


public class Iffy {


public Collection<?>[] getCollectionArray() {
        return null;
}

}