aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/autoloading_fixtures/prepend.rb
blob: 1bef4ab5b3c6d0035b9bbeffc98597bc63886f43 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true
class SubClassConflict
end

class Prepend
  module PrependedModule
  end
  prepend PrependedModule
end