summaryrefslogtreecommitdiff
path: root/spec/ruby/core/module/fixtures/autoload_h.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/module/fixtures/autoload_h.rb')
-rw-r--r--spec/ruby/core/module/fixtures/autoload_h.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/ruby/core/module/fixtures/autoload_h.rb b/spec/ruby/core/module/fixtures/autoload_h.rb
new file mode 100644
index 0000000000..53988c5382
--- /dev/null
+++ b/spec/ruby/core/module/fixtures/autoload_h.rb
@@ -0,0 +1,7 @@
+module ModuleSpecs::Autoload
+ module H
+ def loaded
+ :autoload_h
+ end
+ end
+end