mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-220464 Smart-cast completion doesn't insert <?>
GitOrigin-RevId: 175651a3f6cf5736ca7676b9fe80b569d4260962
This commit is contained in:
committed by
intellij-monorepo-bot
parent
e3367716c0
commit
a0111f91d0
+8
@@ -0,0 +1,8 @@
|
||||
import java.util.List;
|
||||
|
||||
class Foo {
|
||||
{
|
||||
Object o;
|
||||
int size = o instanceof List<?> ? ((List<?>) o).size() : <caret>
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import java.util.List;
|
||||
|
||||
class Foo {
|
||||
{
|
||||
Object o;
|
||||
int size = o instanceof List<?> ? o.size<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user