]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/rest-note-collision.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / rest-note-collision.ly
index 2a448aa75b10c1b00df2c905d45ad42caaafa3b9..33c81df9e421fc292c85f70bfc5d9ec6aed03d2d 100644 (file)
@@ -7,12 +7,12 @@
        }
 
 
-\version "2.16.0"
-\new Staff {
+\version "2.19.21"
 
+music = {
   <<
-    \relative c'' {
-      f e d c b a g f e d c
+    \relative {
+      f'' e d c b a g f e d c
     }
     \\
     {
       r4 r r r r r r r r r r
     }
     \\
-    \relative c'' {
-      f e d c b a g f e d c
+    \relative {
+      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 }
+}