aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/open_status_3.f90
blob: e64561952ad7e34686547d80cd02023a17afa5a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
! { 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