blob: d9f93b288663239b4871b7a46b72f422ca65c8bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class Base<N extends Number> {
public List<N> f1;
public void m1(List<N> ns) {}
}
aspect X {
public List<Z> Base<Z>.f2;
public void Base<Z>.m1(List<Z> ns) {}
}
|