mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
[java] fix change parameter class fix availability (IDEA-278909)
GitOrigin-RevId: 01ae90db563b7512c7ca1f7bd471ebd6f4c8f61f
This commit is contained in:
committed by
intellij-monorepo-bot
parent
a8590ad89f
commit
07c9d4f8de
@@ -0,0 +1,11 @@
|
||||
// "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());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user