2 ! Test that we can write an unformatted stream file without
6 open(10, form
="unformatted", access
="stream", position
="rewind")
7 write (10) '1234567890abcde'
10 if (c
/= '1234567890') call abort
13 if (c
/= '67890abcde') call abort
17 if (c
/= '12AB567890') call abort
20 if (c
/= '67890abcde') call abort
21 close (10,status
="delete")