]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/rest-note-collision.ly
Issue 4211: Add an alternative quarter rest shaped like a mirrored Z.
[lilypond.git] / input / regression / rest-note-collision.ly
index 2a448aa75b10c1b00df2c905d45ad42caaafa3b9..cd69298105345b06977597c88e8f654df653526b 100644 (file)
@@ -8,8 +8,8 @@
 
 
 \version "2.16.0"
-\new Staff {
 
+music = {
   <<
     \relative c'' {
       f e d c b a g f e d c
     }
   >>
 }
+
+\score {
+  \new Staff { \music }
+}
+
+\score {
+  \new Staff { \override Staff.Rest #'style = #'z \music }
+}
+
+\score {
+  \new Staff { \override Staff.Rest #'style = #'classical \music }
+}