mixin2()
  four 4
  if true
    five 5

mixin()
  mixin2()
  if true
    six 6
    if true
      seven 7
  eight 8 if true

body
  one 1
  two 2
  three 3
  if true
    mixin()
  nine 9