blob: ce8d5822ef4f94cfb3d0da356e2e267775152a97 [file] [log] [blame]
! Check empty WHERE and empty ELSEWHERE works
program where_13
integer :: a(5)
a = (/1, 2, 3, 4, 5/)
where (a .eq. 2)
elsewhere
endwhere
end program