summaryrefslogtreecommitdiff
path: root/spec/ruby/core/main/fixtures/string_refinement_user.rb
blob: 48620c325fe842cd676bb3754f8e41e5a122f038 (plain)
1
2
3
4
5
6
7
8
9
10
11
using StringRefinement

module MainSpecs
  DATA[:in_module] = 'hello'.foo

  def self.call_foo(x)
    x.foo
  end
end

MainSpecs::DATA[:toplevel] = 'hello'.foo