summaryrefslogtreecommitdiff
path: root/spec/ruby/core/module/fixtures/name.rb
blob: 25c74d3944a9594f6efc7c8aa89d5caee1ece751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- encoding: utf-8 -*-
module ModuleSpecs
  class NameEncoding
    class Cß
    end
    def name
      Cß.name
    end
  end

  module NameSpecs
  end
end