# File lib/cim/class.rb, line 81
    def instance?
      features.each do |f|
        next if f.reference?
        next if f.method?
        return true if f.property?
      end
      false
    end