]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/rest-note-collision.ly
9b8f1a802817c93778be4767951a8159e638fd34
[lilypond.git] / input / regression / rest-note-collision.ly
1
2 \header {
3
4   texidoc = "In rest-note collisions, the rest moves in discrete
5   steps, and inside the staff, it moves in whole staff spaces."
6
7         }
8
9
10 \version "2.9.18"
11 \new Staff {
12
13   <<
14     \relative c'' {
15       f e d c b a g f e d c
16     }
17     \\
18     {
19       r4 r r r r r r r r r r
20     }
21   >>
22   <<
23     {
24       r4 r r r r r r r r r r
25     }
26     \\
27     \relative c'' {
28       f e d c b a g f e d c
29     }
30   >>
31 }