(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
namelist_65.f90
! { dg-do run }
! { dg-options "-std=gnu" }
! PR45710 Adjust format/padding for WRITE of NAMELIST group to internal file
program oneline
real :: a=1,b=2,c=3,d=4
namelist /nl1/ a,b,c
parameter(ilines=5)
character(len=80) :: out(ilines)

! fill array out with @
do i=1,len(out)
   out(:)(i:i)='@'
enddo

write(out,nl1)
if (out(1).ne."&NL1") STOP 1
if (out(2).ne." A=  1.00000000    ,") STOP 2
if (out(3).ne." B=  2.00000000    ,") STOP 3
if (out(4).ne." C=  3.00000000    ,") STOP 4
if (out(5).ne." /") STOP 5

end program oneline