]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/bar-number-check.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / bar-number-check.ly
1 \version "2.18.0"
2
3 \header {
4   texidoc = "This checks the warning of @code{\\barNumberCheck}."
5 }
6
7 \layout { ragged-right = ##t }
8
9 #(ly:expect-warning (_ "Barcheck failed got ~a expect ~a") 2 3)
10 \book {
11   \score {
12     {
13       c'2^\markup \with-color #green \bold "\\barNumberCheck #1"
14       \barNumberCheck #1
15       d'^\markup \with-color #red \bold "\\barNumberCheck #3"
16       \barNumberCheck #3
17     }
18   }
19 }