You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an upstream bug in GCC 15.1 (I haven't found a report yet, maybe someone has a hint?) that affects code where a factory / constructor is called inside a growing list. It is triggered when using the -fcoarray=single flag which is automatically used by fpm.
list = [list, new_token(TOKEN_WORD, buffer)]
Workaround: replace by
token = new_token(TOKEN_WORD, buffer)
list = [list, token]
Expected Behaviour
The code should compile as expected once the upstream bug is fixed.