%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm,paper-height=845.047\pt,paper-width=597.508\pt,papersize='(cons (* 597.508 pt) (* 845.047 pt))]
\include "lilypond-book-preamble.ly"


% ****************************************************************
% Start cut-&-pastable-section
% ****************************************************************

#(ly:set-option 'eps-box-padding 3.000000)



\paper {
  #(set-paper-size '(cons (* 597.508 pt) (* 845.047 pt)))
  indent = 0\mm
  line-width = 160\mm
  % offset the left padding, also add 1mm as lilypond creates cropped
  % images with a little space on the right
  line-width = #(- line-width (* mm  3.000000) (* mm 1))
}

\layout {
  
}




% ****************************************************************
% ly snippet:
% ****************************************************************
\sourcefilename "/lilypond-2.26.0/input/regression/polymetric-time-warning-measure-length-with.ly"
\sourcefileline 0
\version "2.25.32"

\header {
  texidoc = "A warning is issued when a @code{Staff} @code{\\with} block
specifies a polymetric measure length that conflicts with the @code{Score}.  In
this case, the @code{Score} time signature is 5/4 and the @code{Staff} time
signature is 5/8."
}

#(ly:set-option 'warning-as-error #t)

\score {
  \layout {}
  \midi {}
  {
    \applyContext #(lambda (context)
                    (ly:expect-warning
                     (ly:translate-cpp-warning-scheme
                      "conflicting measure length: %s") 5/8)
                    (ly:expect-warning
                     (ly:translate-cpp-warning-scheme
                      "measure length in Timing context: %s") 5/4))

    \new Score \with { \time 5/4 } <<
      \new Staff \with { \polymetric \time 5/8 } {
        \contextPropertyCheck Score.beamExceptions #'()
        \contextPropertyCheck Score.beatBase #1/4
        \contextPropertyCheck Score.beatStructure #'(1 1 1 1 1)
        \contextPropertyCheck Score.measureLength #5/4
        \contextPropertyCheck Score.meterScalingFactor \default
        \contextPropertyCheck Score.submeasureStructure #'(5)
        \contextPropertyCheck Score.timeSignature 5/4

        \contextPropertyCheck Staff.beamExceptions #'()
        \contextPropertyCheck Staff.beatBase #1/8
        \contextPropertyCheck Staff.beatStructure #'(3 2)
        \contextPropertyCheck Staff.measureLength \default
        \contextPropertyCheck Staff.meterScalingFactor 1
        \contextPropertyCheck Staff.submeasureStructure #'(5)
        \contextPropertyCheck Staff.timeSignature 5/8

        \repeat unfold 5 r4
      }
    >>

    \applyContext #(lambda (context) (ly:check-expected-warnings))
  }
}



% ****************************************************************
% end ly snippet
% ****************************************************************
