blob: 7f127352971dd50a38bb66fe593669bfd62e76a5 [file] [log] [blame]
class Base {
def f<caret>oo(int newName) {
print newName
}
}
class Inh extends Base {
def foo(int otherParam) {
print otherParam
}
}