]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/midi-grace-after-tie.ly
6aca01bc1e99ecc6d081c2c95c914285b356bc7c
[lilypond.git] / input / regression / midi-grace-after-tie.ly
1 \header {
2
3   texidoc = "Tied notes sound as one note in MIDI.  Grace notes
4   following a tied note shorten the resulting single note in MIDI."
5
6   % https://code.google.com/p/lilypond/issues/detail?id=3091
7 }
8 \version "2.16.0"
9 \score {
10   \relative c' {
11     % This first b~ tie should be honoured in the MIDI output:
12     a2. b4~
13     % i.e. this b8 must not be sounded:
14     | b8 \grace c16 d4
15   }
16   \midi { }
17 }