]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/follow-voice-consecutive.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / follow-voice-consecutive.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc= "The voice follower is not confused when set for consecutive
5 sets of staff switches."
6 }
7
8 \new PianoStaff \relative c' <<
9   \new Staff = "one" {
10     c4
11     \showStaffSwitch
12     \change Staff = two
13     a4
14     \hideStaffSwitch
15     \change Staff = one
16     c4
17     \showStaffSwitch
18     \change Staff = two
19     a4
20     \hideStaffSwitch
21   }
22   \new Staff = "two" { \clef bass s1 }
23 >>