]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/inherit-acceptability.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / inherit-acceptability.ly
1 \version "2.19.26"
2
3 \header {
4   texidoc = "@code{\\inherit-acceptability} allows for one context def to be accepted
5 wherever an existing one is."
6 }
7
8 \new StaffGroup
9 <<
10   \new Staff { \time 3/4 c'2. }
11   \new TimeLess { \time 3/4 c'2. }
12 >>
13
14 \layout {
15   ragged-right = ##t
16   \context {
17     \Staff
18     \name "TimeLess"
19     \remove "Time_signature_engraver"
20   }
21   \inherit-acceptability "TimeLess" "Staff"
22 }