]> git.donarmstrong.com Git - lilypond.git/blob - input/error.ly
release: 0.0.44
[lilypond.git] / input / error.ly
1 include "this-is-hopefully-a-nonexisting-file"
2
3 mwa = \music {
4         \meter{3/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            %  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 = \lyrics {
27         These Gates will open just like windows. % ok; warning
28 }
29
30
31 include "this-is-hopefully-a-nonexisting-file"
32 \score {
33         \staff { 
34                 lyric \music { bla }
35         }
36         \staff { 
37                 \melodic \music { mwa }
38         }
39 }