2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_huge.f90
blobf7b243cd3b6ebb23553e7d751f80e98bd63af58d
1 ! { dg-do run { target fd_truncate } }
2 ! PR32446 printing big numbers in F0.1 format.
3 ! This segfaulted before the patch.
4 open (10, status="scratch")
5 write (10,'(F0.1)') huge(1.0)
6 END