summaryrefslogtreecommitdiff
path: root/test/ruby/box/returns_proc.rb
blob: bb816e5024d45838712d84b3cd5489b739c340f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module Foo
  def self.foo
    "fooooo"
  end

  def self.callee
    lambda do
      Foo.foo
    end
  end
end