blob: feec537d003b2f4b4e85b8348ee88c8b9ba0353a [file] [log] [blame]
class T1 {
int method(int i) {
return 0;
}
}
class T2 extends T1 {
int method(int i) {
return <selection>super.method(i) + 1</selection>;
}
}