class RBS::Types::Bases::Any

def initialize(location:, todo: false)

def initialize(location:, todo: false)
  super(location: location)
  if todo
    @string = "__todo__"
  end
end

def to_s(level=0)

def to_s(level=0)
  @string || "untyped"
end