aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs190/paramannos/Code.java
blob: 1ab184346de09b1d056f2c348911291d91915b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@interface Anno {}

public class Code {
	public Code(@Anno String boo) {}
	public Code(Object boo) {}
}

aspect X {
	before(): execution(new(!@Anno (*))) { }
}