https://gcc.gnu.org/bugzilla/show_bug.cgi?id=121796
Bug ID: 121796
Summary: DO CONCURRENT with typespec does not compile
Product: gcc
Version: 16.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: jvdelisle at gcc dot gnu.org
Target Milestone: ---
Example from Damian.
implicit none
integer i, array(2)
do concurrent(integer :: i=1:size(array))
array(i) = i
end do
end
