]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-combine-derived-voice.ly
Imported Upstream version 2.16.0
[lilypond.git] / input / regression / lyric-combine-derived-voice.ly
1 \version "2.16.0"
2 \header {
3   texidoc = "For Voice-derived contexts like CueVoice, the lyrics should
4 still start with the first note."
5 }
6
7 \score {
8   \new Staff <<
9     \new Voice \relative c'' {
10       g2 
11       <<
12           { \voiceOne r2 }
13           \new CueVoice = "cue" { \voiceTwo g4 g }
14       >>
15   }
16   \context Lyrics \lyricsto "cue" { A B }
17   >>
18 }