view gcc/testsuite/gfortran.dg/open_status_3.f90 @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do run }
! PR27704 Incorrect runtime error on multiple OPEN.
! Test case contribyted by Jerry DeLisle <jvdelisle@gcc.gnu.org>
       OPEN(8, FORM = 'unformatted', STATUS = 'scratch')
       OPEN(8, FORM = 'unformatted', status = 'scratch')
       close(8)
       open(8)
       open(8, status = 'old')
       close(8, status="delete")       
       end