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