Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / hollerith.f90
blob2b23f705c7a664a1febe0bd65a18e0807073c434
1 ! PR 14038- 'H' in hollerith causes mangling of string
2 program hollerith
3 IMPLICIT NONE
4 CHARACTER*4 LINE
5 100 FORMAT (4H12H4)
6 WRITE(LINE,100)
7 IF (LINE .NE. '12H4') STOP 1
8 end