1\version "2.21.6"
2
3\header{
4  texidoc="If the body of a volta repeat is empty, the alternatives are
5still rendered with the expected volta notation."
6}
7
8body = { }
9
10\new Score {
11  \repeat volta 2 \body | R1
12}
13
14\new Score {
15  R1 | \repeat volta 2 \body
16}
17
18\new Score {
19  R1 | \repeat volta 2 \body | R1
20}
21
22\new Score {
23  \repeat volta 2 \body \alternative { a'1 b' } | R1
24}
25
26\new Score {
27  R1 | \repeat volta 2 \body \alternative { a'1 b' }
28}
29
30\new Score {
31  R1 | \repeat volta 2 \body \alternative { a'1 b' } | R1
32}
33