We have a class Car defined like this in a car.rb file
class Car
end
then, we have another class Car defined in electric/car.rb
require "../car.rb"
module Electric
class Car < Car
end
end
Unfortunately, it seems that we can't inherit from the first class. Why is that?