Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gfortran.fortran-torture / execute / slash_edit.f90
blobc73d5432a31e58b564660cea3c44ffe90a95bd3c
1 ! pr 14762 - '/' not working in format
2 INTEGER N(5)
3 DATA N/1,2,3,4,5/
4 OPEN(UNIT=7)
5 100 FORMAT(I4)
6 WRITE(7,100)N
7 CLOSE(7)
8 OPEN(7)
9 200 FORMAT(I4,///I4)
10 READ(7,200)I,J
11 CLOSE(7)
12 IF (I.NE.1) CALL ABORT
13 IF (J.NE.4) CALL ABORT
14 END