blob: 2b23f705c7a664a1febe0bd65a18e0807073c434 [file] [log] [blame]
! PR 14038- 'H' in hollerith causes mangling of string
program hollerith
IMPLICIT NONE
CHARACTER*4 LINE
100 FORMAT (4H12H4)
WRITE(LINE,100)
IF (LINE .NE. '12H4') STOP 1
end