]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/warn-conflicting-key-signatures.ly
Remove several warnings in the regtests, add warning-as-error where needed
[lilypond.git] / input / regression / warn-conflicting-key-signatures.ly
1 \version "2.14.0"
2 #(ly:set-option 'warning-as-error #f)
3
4 \header {
5   texidoc = "If you specify two different key signatures at one point, a
6 warning is printed."
7
8 }
9
10 \score { 
11 \context Voice <<
12  { \key cis \major cis4 \key bes \major bes4 }
13  { \key cis \major fis4 \key es \major g4 }
14 >>
15 }