aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/io_constraints_4.f90
blob: 149d31b163158fc7c0c53e69738b64c05dcf883a (plain)
1
2
3
4
5
6
7
8
9
10
! { dg-do compile }
! PR33268 [patch,fortran] read ('(f3.3)'), a rejected due to the extra (...)

write(*,('(a)')) 'Hello'
write (*,'(f8.3)'), 3.14  ! { dg-warning "Comma before i/o item list" }
print ('(a)'), "valid"
read ('(f3.3)'), a 
read (*, '(f3.3)'), a     ! { dg-warning "Comma before i/o item list" }
write ('(a)'), "invalid"  ! { dg-error "Invalid form of WRITE statement" }
end