]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-volta.ly
Remove several warnings in the regtests, add warning-as-error where needed
[lilypond.git] / input / regression / repeat-volta.ly
1 \version "2.14.0"
2 #(ly:set-option 'warning-as-error #f)
3
4 \header{
5   texidoc="
6 Volta (Semi folded) behavior.  Voltas can start on non-barline moments.
7 If they don't barlines should still be shown.
8 "
9 }
10
11 %%  no alts.
12
13 \context Voice \relative c'' {
14   %% repeat non aligning with barlines.
15   \repeat volta 3 { c^"3x 0alt" d e }
16   %% less alts than body
17   \repeat volta 4 { c^"4x 2alt" d } \alternative { e f }
18   %% more alts than body
19   \repeat volta 2 { c^"2x 3alt" d } \alternative { e f g }
20 }
21
22