Files
Tagir Valeev 5d5dfb997a [java-intentions] AddMethodQualifierFix: ModCommand
GitOrigin-RevId: efe77eed876481149c7b58356ffd6dcada649a16
2023-07-17 19:20:35 +00:00

15 lines
286 B
Java

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();
}
}