(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
read_4.f90
! { dg-do run }
! PR80741 wrong code causes incorrect behaviour of namelist READ
program p
  use, intrinsic :: iso_fortran_env, only: iostat_end
  implicit none
  integer :: x, y, ios, io
  character(10) :: line
  namelist /test/ x, y
  
  x = 10
  y = 10
  ios = 0
  io = 10
  open(unit=io, status='scratch')
  write(io, test)
  write(io, *) 'done'
  rewind(io)
  x = 0
  y = 0
  read(io, test)
  if (x.ne.10 .or. y.ne.10) STOP 1
  !
  read(io, *) line
  if (line.ne.'done') STOP 2
  !
  read(io, *, iostat=ios) line
  if (ios/=iostat_end) STOP 3
  rewind(io)
  x = 0
  y = 0
  read(io, test)
  if (x.ne.10 .or. y.ne.10) STOP 4
  read(io, *, iostat=ios) line
  if (line.ne.'done') STOP 5
end