2 ! pr 19647 / segfault on inquire(..pad=..)
3 ! Thomas.Koenig@online.de
4 ! bdavis9659@comcast.net
6 character(len
=10) delim
8 open(10,delim
='quote',status
='SCRATCH')
9 inquire(10,delim
=delim
)
11 if (delim
.ne
. 'QUOTE') call abort
13 open(10,delim
='apostrophe',status
='SCRATCH')
14 inquire(10,delim
=delim
)
16 if (delim
.ne
. 'APOSTROPHE') call abort
18 open(10,status
='SCRATCH')
19 inquire(10,delim
=delim
)
21 if (delim
.ne
. 'NONE') call abort
23 open(10,form
='UNFORMATTED',status
='SCRATCH')
24 inquire(10,delim
=delim
)
26 if (delim
.ne
. 'UNDEFINED') call abort