]> git.donarmstrong.com Git - lilypond.git/blob - input/error.ly
82e5d190c68bd8e25712a3cc3d042650ad6b229a
[lilypond.git] / input / error.ly
1 mwa = music {
2         $
3         a ) b ] c       % warning
4         &               % ok; error
5         a b ) ]         % ok; error
6 %        a.........     % fatal error -- assert
7         a b c
8         |||             % 
9         abc             % ok; print error, no output
10         \bla            % no warning-> this STRING, reduced to lyric_elt.
11         a [ b           % warning, still output
12         { a( b }        % warning, still output
13         a b ,c
14         a b c-*
15         a b c&
16         { a-. b-. }
17         $
18 }
19
20 bla = music {
21         @ 
22         These Gates will open just like windows. % ok; warning
23         @
24 }
25
26
27 include "this-is-hopefully-a-nonexisting-file"
28
29 score {
30         staff { 
31                 lyric music { bla }
32         }
33         staff { 
34                 melodic music { mwa }
35         }
36         commands {
37                 meter 3*4
38         }
39 }