]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/ambitus-with-ligature.ly
Simplify ambitus-with-ligature regression test
[lilypond.git] / input / regression / ambitus-with-ligature.ly
1 \version "2.14"
2
3 \header {
4   texidoc = "
5 A @code{\Voice} should be able to contain both an @code{Ambitus_engraver}
6 and a @code{Mensural_ligature_engraver} without segfaulting.
7   "
8 }
9
10 {
11   \new Voice \with  {
12     \consists Ambitus_engraver
13     \consists Mensural_ligature_engraver
14     } {
15       \[ c'\longa c''\longa \]
16     }
17 }