summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/fmt_huge.f90
blob: f7b243cd3b6ebb23553e7d751f80e98bd63af58d (plain)
1
2
3
4
5
6
! { dg-do run { target fd_truncate } }
! 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