GuessManagerImpl: minimal assignment handling

This commit is contained in:
Tagir Valeev
2017-11-20 16:11:26 +07:00
parent ddcf5545d2
commit 0dbef4cc6b
4 changed files with 33 additions and 4 deletions
@@ -0,0 +1,8 @@
class Foo {
void test(Object obj) {
if(!(obj instanceof String)) {
obj = "foo";
}
obj.subst<caret>
}
}
@@ -0,0 +1,8 @@
class Foo {
void test(Object obj) {
if(!(obj instanceof String)) {
obj = "foo";
}
((String) obj).substring()
}
}