aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs165/pr272233/Iffy2.java
blob: 15a5d79fd44e449f938a73315161769488c5be4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import java.util.*;
import org.aspectj.lang.annotation.*;

@Aspect 
class Iffy2 {

  @Before("execution(!void[] *(..))") 
  public void advice1() {}

  @Before("execution(!void[] *(..))") 
  public void advice2() {}

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