blob: eae1ac6af4f95f6f32d9014cc2864ee62cb1fc69 [file] [log] [blame]
class Base {
def getAt(def a) {
"2"
}
}
class Test extends Base {
def getAt = {def a ->
2
}
}
def test = new Test()
test = test[2]
print tes<ref>t