PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / where_12.f90
blobc95dc979f6d829c4ee8e14316e6cf9db25924d89
1 ! Check empty WHEREs work
2 program where_12
3 integer :: a(5)
5 a = (/1, 2, 3, 4, 5/)
6 where (a .eq. 1)
7 endwhere
8 end program