blob: 3ce752956473fcce3efd65e22e85391b9f36e572 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// error, only one type parameter for I
interface I<T> { }
public class Basic3 {
public static void main(String[]argv) {
}
}
aspect X {
declare parents: Basic3 implements I<String,Number>;
}
|