OSDN Git Service

PR fortran/33500
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.fortran-torture / compile / logical-1.f90
1 ! PR fortran/33500
2
3 subroutine whatever()
4 logical(kind=1) :: l1, l2, l3
5 if ((l1 .and. l2) .neqv. l3) then
6    l1 = .true.
7 endif
8 end