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

class SubClassConflict
end

class Prepend
  module PrependedModule
  end
  prepend PrependedModule
end