M
MohsinHijazee
Hello!
I'm having a strange problem.
class Super
def index
puts "some code"
end
end
class Base < Super
def index
super.index() # Says you super is nil! nil.index and an
error. What might be wrong?
end
end
I'm having a strange problem.
class Super
def index
puts "some code"
end
end
class Base < Super
def index
super.index() # Says you super is nil! nil.index and an
error. What might be wrong?
end
end