summaryrefslogtreecommitdiff
path: root/spec/ruby/core/proc/fixtures/proc_aref.rb
blob: a305667797ed80a2853987bda3c817d09334f773 (plain)
1
2
3
4
5
6
7
8
9
module ProcArefSpecs
  def self.aref
    proc {|a| a }["sometext"]
  end

  def self.aref_freeze
    proc {|a| a }["sometext".freeze]
  end
end