mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
a test for IDEA-99898 Java completion doesn't take into account inferred type...
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
public class Aaaaaaa {
|
||||
|
||||
void bar(Object foo) {
|
||||
if (foo instanceof String) {
|
||||
fo.substr<caret>
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
public class Aaaaaaa {
|
||||
|
||||
void bar(Object foo) {
|
||||
if (foo instanceof String) {
|
||||
((String) foo).substr<caret>
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user