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