blob: c6633a508bf1c49c4ab5e03a31ee67c82d43bbf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
! { dg-do run }
! { dg-options "-fdec" }
! { dg-shouldfail "ACTION conflicts with READONLY" }
!
! Test that we get a run-time error for opening a READONLY file with
! ACTION='WRITE'.
!
implicit none
integer :: fd = 8
character(*), parameter :: f = "dec_io_5.txt"
character(10), volatile :: c
c = 'write'
open(unit=fd,file=f,action=c,readonly)
end
! { dg-output "ACTION conflicts with READONLY" }
|