1\version "2.21.0"
2
3\header {
4  texidoc = "@code{\\partCombine} needs to be given pitches in their
5final octaves, so if @code{\\relative} is used it must be applied
6inside @code{\\partCombine}.  The pitches in @code{\\partCombine} are
7unaffected by an outer @code{\\relative}, so that the printed output
8shows the pitches that @code{\\partCombine} used.
9
10The expected output of this test is three identical measures."
11}
12
13\new Staff {
14  \partCombine \absolute { e'2 f' } { c'2 d' }
15  \relative \partCombine { e'2 f' } { c'2 d' } % relative is ignored
16  \partCombine \relative { e'2 f } \relative { c'2 d }
17}
18