Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gfortran.fortran-torture / execute / strarray_2.f90
blobdbb3b89e43f0b0d5affd59f2e59aa3b8fdf1bb47
1 subroutine foo(i,c)
2 character c
3 integer i
4 character(1),parameter :: hex_chars(0:15)=&
5 (/'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'/)
7 c = hex_chars(i)
8 end
10 program strarray_2
11 character c
12 call foo(3,c)
13 if (c.ne.'3') call abort()
14 end