nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_huge.f90
blob43c4e2ac273a324f18ed69f069f4bce5249271d2
1 ! { dg-do run }
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