Assertion failed: my_index == 0, [...]
I found what triggered this Assertion:
In my file I had a
\new Lyrics ...
outside of any Staff or Score context.
Please provide a minimal example that so that we can add an issue to
the tracker.
The attached file is pretty much as minimal as I can reduce it. Removing
more bars makes it compile w/o error.
Kind regards,
Michael
--
Michael Gerdau email: m...@qata.de
GPG-keys available on request or at public keyserver
\version "2.25.9"
\header {
title = "some title"
}
sopranoVoice = \relative b' {
\key d \major
R1*6/4 | b2 a4 a( g) fis | g4( d e) fis2 r4 | b2. e4( d) b4 | b2.( a2) r4 |
a4( cis) b a2 a4 |
e'4 d cis b2 a4 | a4( fis') e e( dis) fis, | a2 b4 a2( gis4) | gis4( e') d d(
cis) e, |
g2 a4 g2( fis4) | b2. e, | a2. d, | d2 fis4 fis2( e4) | d2 r4 r2 r4 |
}
verse = \lyricmode {
bla bla
}
sopranoVoicePart = \new Staff {
\new Voice = "solo" { \sopranoVoice }
}
\new Lyrics \lyricsto "solo" { \verse }
\score {
<<
\sopranoVoicePart
>>
\layout { }
}