nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_f_an_p.f
blobf3b71169ae8454e2fd37d047ca8486ca7dcd3540
1 ! { dg-do run }
2 ! PR38285 wrong i/o output: interaction between f and p for output
3 ! Special case of kPFw.d when d = 0
4 program f_and_p
5 character(28) string
6 write(string,1) 3742. , 0.3742
7 1 format ( f14.0, 4pf14.0 )
8 if (string.ne." 3742. 3742.") STOP 1
9 end program f_and_p