OSDN Git Service

2010-07-29 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / fmt_error_8.f
1 ! { dg-do compile }
2 ! { dg-options "-std=f95" }
3 ! PR35754 -std=f95: Reject "1P2E12.4" w/o a comma after the "P" 
4 ! PR
5 ! Test case provided by Jerry DeLisle  <jvdelisle@gcc.gnu.org>
6       character(40) :: fmt_string
7       write(*, '(1P2E12.4)') 1.0 ! { dg-error "Comma required" }
8       write(*, '(1PT12,F12.4)') 1.0 ! { dg-error "Comma required" }
9       write(*, '(1PE12.4)') 1.0 ! This is OK by the standard 10.1.1
10       write (*,'(1PD24.15,F4.2,0P)') 1.0d0 ! This OK too.
11       end