]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/warn-conflicting-key-signatures.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / warn-conflicting-key-signatures.ly
1 \version "2.16.0"
2 #(ly:set-option 'warning-as-error #f)
3 #(ly:expect-warning (ly:translate-cpp-warning-scheme "Two simultaneous %s events, junking this one") "key-change")
4 #(ly:expect-warning (ly:translate-cpp-warning-scheme "Previous %s event here") "key-change")
5
6 \header {
7   texidoc = "If you specify two different key signatures at one point, a
8 warning is printed."
9
10 }
11
12 \score { 
13 \context Voice <<
14  { \key cis \major cis4 \key bes \major bes4 }
15  { \key cis \major fis4 \key es \major g4 }
16 >>
17 }