Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / intrinsic_index.f90
blobbbfe0bf5a5e0ec081f4666dc16a1e2d5e5ed87b1
1 ! Program to test the INDEX intrinsic
2 program test
3 character(len=10) a
4 integer w
5 if (index("FORTRAN", "R") .ne. 3) STOP 1
6 if (index("FORTRAN", "R", .TRUE.) .ne. 5) STOP 2
7 if (w ("FORTRAN") .ne. 3) STOP 3
8 end
10 function w(str)
11 character(len=7) str
12 integer w
13 w = index(str, "R")
14 end