]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-silence-mixed.ly
Merge remote branch 'origin/master' into release/unstable
[lilypond.git] / input / regression / part-combine-silence-mixed.ly
1 \version "2.19.16"
2
3 \header {
4   texidoc = "Different kinds of silence are not merged into the shared voice even if they begin and end simultaneously."
5 }
6
7 \score { <<
8   \new Staff {
9     \partcombine
10       \relative f' { R1^"R" | s1^"s" | r1^"r" }
11       \relative f' { r1_"r" | R1_"R" | s1_"s" }
12   }
13   \new Staff {
14     \partcombine
15       \relative f' { r1^"r" | R1^"R" | s1^"s" }
16       \relative f' { R1_"R" | s1_"s" | r1_"r" }
17   }
18 >> }