blob: df9eca3a419733200845bdd4a431921868d11317 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
public class PR119543 {
public abstract static aspect A<T> {
private pointcut caching();
private pointcut permitted();
before() : caching() {
}
}
static aspect A1 extends A<String> {
}
}
|