blob: 33487fe5384980bb43b5ab2769b9474c02e7c820 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import java.util.*;
class C<N extends Number> {}
interface I {}
aspect X {
void C<R>.m0(R n) { } // L9
List<Q> C<Q>.m0(Q q,int i,List<List<Q>> qs) {return null;} // L11
}
|