Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gfortran.fortran-torture
/
execute
/
where_13.f90
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