summaryrefslogtreecommitdiff
path: root/test/ruby/namespace/proc_callee.rb
blob: d30ab5d9f3b5218b09a7d4c22c835be0cd9cb528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Target
  def self.foo
    "fooooo"
  end
end

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