(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
fmt_read_2.f90
! { dg-do compile }
! PR fortran/32483
      implicit none
      integer :: r
      real :: a
      write (*,'(i0)') r
      read (*,'(i0)') r ! { dg-error "Positive width required" }
      read (*,'(f0.2)') a ! { dg-error "Positive width required" }
      print *, r,a
      END