aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/autoloading_fixtures/class_folder/nested_class.rb
blob: 98426b797d0e7ae3e3d763ae8819174ec5b0ef4a (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ClassFolder
  class NestedClass
  end

  class SiblingClass
  end
end