IDEA-114736 Bug in code completion inside instanceof block

This commit is contained in:
peter
2013-10-12 23:00:40 +02:00
parent 377acad42d
commit 3744d2ce50
5 changed files with 41 additions and 4 deletions
@@ -0,0 +1,9 @@
import foo.*;
class Goo {
void method(Foo o) {
if (o instanceof FooImpl) {
o.consu<caret>
}
}
}
@@ -0,0 +1,9 @@
import foo.*;
class Goo {
void method(Foo o) {
if (o instanceof FooImpl) {
((FooImpl) o).consume();<caret>
}
}
}