summaryrefslogtreecommitdiff
path: root/test/prism/fixtures/unparser/corpus/literal/module.txt
blob: cec03f3bfd9ab4547dbb6bff42e698098421d16d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module A
end

module A::B
end

module A::B::C
end

module A
  include(B.new)

  def foo
    :bar
  end
end