view gcc/testsuite/gfortran.dg/fmt_huge.f90 @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do run }
! PR32446 printing big numbers in F0.1 format.
! This segfaulted before the patch.
      open (10, status="scratch")
      write (10,'(F0.1)') huge(1.0)
      END