aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/index_3.f90
blob: 5ecbb4113a3324493ab6a971fe820aafb13e59f3 (plain)
1
2
3
4
5
6
7
8
! { dg-do run }
! PR 91651 - this used to give an ICE.
! Bug report by Gerhard Steinmetz.
program p
   integer :: z(2)
   z = index('100101', '10', [.false.,.true.],kind=4)
   if (z(1) /= 1 .or. z(2) /= 4) stop 1
end