Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gfortran.fortran-torture / execute / f2_edit_1.f90
blobcb2f5eacd338642f07c1ab4010f5c50f79510878
1 ! check F2.x edit descriptors
2 ! PR 14746
3 CHARACTER*15 LINE
4 RCON21 = 9.
5 RCON22 = .9
6 WRITE(LINE,'(F2.0,1H,,F2.1)')RCON21,RCON22
7 READ(LINE,'(F2.0,1X,F2.1)')XRCON21,XRCON22
8 IF (RCON21.NE.XRCON21) CALL ABORT
9 IF (RCON22.NE.XRCON22) CALL ABORT
10 END