blob: 86ed9c777268ffc2e36c226d095e42b07b9cf7d0 [file] [log] [blame]
class C {
String method() {
return method(27);
}
String <caret>method(int i) {
}
}
class C1 extends C {
String method(int i) {
}
}