mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 21:20:54 +07:00
12 lines
205 B
Java
12 lines
205 B
Java
// "Make 'a' implement 'b'" "false"
|
|
class a<T> implements b<T> {
|
|
}
|
|
interface b<T> { }
|
|
class f {
|
|
<K> void g(b<K> kb, java.util.List<K> l) {}
|
|
void m(a<String> aa){
|
|
g(a<caret>a, new Object());
|
|
}
|
|
}
|
|
|