1\version "2.21.0"
2
3\header {
4  texidoc = "@code{\\killCues} shall only remove real cue notes generated by
5  @code{\\cueDuring}, but not other music quoted using @code{\\quoteDuring}."
6}
7
8mus = \relative { c'2 c c c c c c c }
9\addQuote "M" \mus
10
11quot = \relative {
12  d'2 \quoteDuring "M" { s1 } e2 \cueDuring "M" #UP { s1 } f2
13}
14
15\score { <<
16  \quot
17  \killCues \quot
18>> }
19