blob: 71908273265b9e9474841f95cafb59636299e0d1 [file] [log] [blame]
! PR 14901
! Internal writes were appending CR after the last char
! written by the format statement.
CHARACTER*10 A
WRITE(A,'(3HGCC)')
IF (A.NE.'GCC ') THEN
! PRINT*,'A was not filled correctly by internal write'
! PRINT*,' A = ',A
STOP 1
ENDIF
END