[Bug fortran/84109] New: ICE in adjustl on allocatable array of strings

2018-01-29 Thread wvermin at gmail dot com
: fortran Assignee: unassigned at gcc dot gnu.org Reporter: wvermin at gmail dot com Target Milestone: --- Created attachment 43273 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=43273&action=edit Output on stderr when issuing the command: gfortran a.f90 This

[Bug fortran/102113] New: parsing error in assigned goto

2021-08-28 Thread wvermin at gmail dot com via Gcc-bugs
Assignee: unassigned at gcc dot gnu.org Reporter: wvermin at gmail dot com Target Milestone: --- This program produces an error: program p assign 10 to i goto i,(10,20 ) 10continue 20continue end program 3 | goto i,(10,20

[Bug fortran/102114] New: label on END statement not recognized after CONTAINS

2021-08-28 Thread wvermin at gmail dot com via Gcc-bugs
Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: wvermin at gmail dot com Target Milestone: --- This program produces an error: program p goto 10 contains subroutine s end subroutine s 10 end program 2 | goto 10