# File lib/facets/core/hash/having_fallback.rb, line 17
      def self.fetch(key, *args, &blk)
        return @fallback.fetch(key, *args, &blk) if @fallback and not key?(key) rescue super
        super
      end