add method qualifier fix should be not available for unresolved qualified method call

This commit is contained in:
Dmitry Batkovich
2018-07-09 13:39:37 +03:00
parent 625798a5f9
commit 2a035a9a12
3 changed files with 21 additions and 1 deletions
@@ -0,0 +1,15 @@
class X {
public class ObjectValue {
public ObjectValue get(String name) { return null; }
}
public class JsonObjectValue extends ObjectValue {
public int sizeInBytes() { return 0; }
}
{
JsonObjectValue obj = null;
obj.get("href").siz<caret>eInBytes();
}
}