aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/hollerith.f90
blob: aa7b17def7563dc98bfb3df124334bafdba971ea (plain)
1
2
3
4
5
6
7
8
9
! 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') call abort ()
end