aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr167197/AspectBreaker.java
blob: 865b7aac7386c598e7d6514eac197b1f80be9412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import java.util.ArrayList;

public class AspectBreaker extends ArrayList<ICounterValue[]> {
	private static final long serialVersionUID = 1L;
	
    public AspectBreaker() {
    }

    public boolean test(ICounterValue[] obj) {
        this.size();
        
        return false;    	
    }
}

interface ICounterValue {
	
}

aspect X {
  before(): call(* *(..)) {}
}