aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/kernel/fixtures/autoload_from_included_module.rb
blob: f5bedc69921eaf05622c3b1d3968b772991e78d3 (plain)
1
2
3
4
5
6
7
8
9
module KernelSpecs
  module AutoloadMethod
    module AutoloadFromIncludedModule
      def self.loaded
        :autoload_from_included_module
      end
    end
  end
end