blob: 0a99a6bf645d12a3d3dc1707af227268243e43ae [file] [log] [blame]
class Types {
public char <caret>method(CharSequence v) {
return v.charAt(0);
}
public void context() {
String v = "child type";
char c = v.charAt(0);
}
}