blob: 4a7a1ac744a084d9c8d8e0f1ae023f600c399659 [file] [log] [blame]
class Test {
int fieldName;
void foo(int fieldName) {
this.fieldName = fieldName;
}
}
class TestImpl extends Test {
void foo(int fieldName) {
this.fieldName = fieldName;
}
}