do not generate captured wildcard from unbound captured wildcard with same context

This commit is contained in:
Anna Kozlova
2014-09-04 15:07:13 +04:00
parent f35847c962
commit 17b77be48b
3 changed files with 11 additions and 1 deletions
@@ -0,0 +1,9 @@
class Test<X extends Getter<?, ?> & Runnable> {}
interface Supplier<K> {
K get();
}
interface Getter<C, S extends C> extends Supplier<C> {
public S get();
}