blob: c9ee8fcfc35c3cc69b9e6ddca4cec7191d7e59d3 [file] [log] [blame]
class Types {
public void method(Object v) {
int i = v.hashCode();
}
public void context() {
String v = "child type";
method(v);
}
}