Ruby - Inheritance
Identify the error in this Ruby code:
class Base
def info
'Base info'
end
end
class Derived < Base
def info
super()
puts 'Derived info'
end
end
Derived.new.info