(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.fortran-torture/
execute/
where_12.f90
! Check empty WHEREs work
program where_12
   integer :: a(5)

   a = (/1, 2, 3, 4, 5/)
   where (a .eq. 1)
   endwhere
end program