
mixin2()
  three 3

mixin3()
  four 4
  mixin4()

mixin4()
  five 5

mixin()
  two 2
  mixin2()
  mixin3()
  six 6

body
  one 1
  mixin()
  seven 7