lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / io_constraints_10.f90
blobbb756aa2bc83ed24020d3e9858eb9df2c430f88b
1 ! { dg-do compile }
2 ! { dg-options "-std=f95" }
4 ! PR fortran/52335
7 integer :: lun
8 character(len=20) :: str
10 ! VALID Fortran 95:
11 open(unit=lun,file=str,delim='apostrophe',status='old')
12 inquire(lun, delim=str)
14 ! Fortran 2003:
15 write(*,*, delim='apostrophe') 'a' ! { dg-error "Fortran 2003: DELIM= at .1. not allowed in Fortran 95" }
16 end