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