aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs170/pr382435/one/bug/A.java
blob: a331bcc47b85c05f36fed2803f7d7b13f9650ea1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package bug;

import java.util.List;

public class A {}//extends B<String> { }

abstract class B<T> {
	public abstract List<List<T>> getList();
}

privileged aspect A_ITD {
	declare parents: A extends B<String>;

	public List<List<String>> A.getList(){
		return null;
	}
}