blob: acd4b23cfe3f1576e863b5a68138e81e59481b30 [file] [log] [blame]
class Types {
public String <caret>method(Object v) {
return v.toString();
}
public void context() {
String v = "child type";
Object o = v.toString();
}
}