Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / strarray_1.f90
blob95e9b038559fa2e28c85659caa269741c8f84691
1 subroutine foo(i)
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 if (c.ne.'3') call abort()
9 end
11 program strarray_1
12 call foo(3)
13 end