Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gfortran.fortran-torture / execute / initialization_1.f90
blob2ccb45a2388bfd4ed7252593890c13b30774bb6a
1 ! PR 15963 -- checks character comparison in initialization expressions
2 character(8), parameter :: a(5) = (/ "H", "E", "L", "L", "O" /)
3 call x(a)
4 contains
5 subroutine x(a)
6 character(8), intent(in) :: a(:)
7 integer :: b(count(a < 'F'))
8 if (size(b) /= 1) call abort()
9 end subroutine x
10 end