]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/incompatible-stem-warning.ly
Remove several warnings in the regtests, add warning-as-error where needed
[lilypond.git] / input / regression / incompatible-stem-warning.ly
1 \version "2.14.0"
2 #(ly:set-option 'warning-as-error #f)
3
4 \header {
5
6   texidoc = "
7 Combine several kinds of stems in parallel voices.
8 "
9
10 }
11
12 \new Voice { \time 4/1
13              << c'\breve e'8 >>
14              << c'8 e'\breve >> |
15              << c'\longa e'1 >> |
16              << c'1 e'\longa >> |
17              << c'2 e'1 >>
18              << c'1 e'2 >>
19              << c'2 e'4 >>
20              << c'4 e'2 >>
21              << c'2 e'8 >>
22              << c'8 e'2 >>
23 }