]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/grace-part-combine.ly
* lily/beam-engraver.cc: move new-beam-event to beam-event
[lilypond.git] / input / regression / grace-part-combine.ly
1
2 \version "1.9.1"
3 \header {
4     texidoc = "Partcombiner and grace notes can go together."
5 }
6     \paper { raggedright= ##t }
7
8 \score {
9     \context StaffGroup = group <
10         \context Staff = instrument <
11             \context Voice=one \partcombine Voice
12             \context Thread=one \notes \relative c'' {
13                 c4 d e f  \grace f16 g1
14             }
15             \context Thread=two \notes \relative c' {
16                 c4 d e2  g1
17             }
18         >
19     >
20 }
21