]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/parallelmusic-partial.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / parallelmusic-partial.ly
1 \version "2.19.22"
2
3 \header {
4   texidoc = "
5 @code{\\parallelMusic} does not complain about incomplete bars at its
6 end.
7 "
8 }
9
10 \parallelMusic vI.vII
11 \fixed c'
12 {
13   f2 |
14   a2 |
15   d2 r2 |
16   d2 r8 cis cis cis |
17   d4 r4 \bar "|." |
18   d4 r4 \bar "|." |
19 }
20
21 global =
22 {
23   \key d\minor
24   \time 4/4
25   \partial 2
26 }
27
28 \score {
29   \new StaffGroup
30   <<
31     \new Staff { \global \vI }
32     \new Staff { \global \vII }
33   >>
34 }