Mercurial > hg > CbC > CbC_gcc
comparison gcc/testsuite/gfortran.dg/pr19216.f @ 131:84e7813d76e9
gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 07:37:49 +0900 |
parents | 04ced10e8804 |
children |
comparison
equal
deleted
inserted
replaced
111:04ced10e8804 | 131:84e7813d76e9 |
---|---|
7 write (20,'(A)') '/ 10 20 30' | 7 write (20,'(A)') '/ 10 20 30' |
8 write (20,'(A)') '1 2 3 4' | 8 write (20,'(A)') '1 2 3 4' |
9 write (20,'(A)') '5 6 7 8' | 9 write (20,'(A)') '5 6 7 8' |
10 rewind (20) | 10 rewind (20) |
11 read (20,*) (dat(i), i=1,3) | 11 read (20,*) (dat(i), i=1,3) |
12 if (dat(1).ne.3 .or. dat(2).ne.2 .or. dat(3).ne.1) call abort | 12 if (dat(1).ne.3 .or. dat(2).ne.2 .or. dat(3).ne.1) STOP 1 |
13 read (20,*) I,J | 13 read (20,*) I,J |
14 if (i .ne. 1 .or. j .ne. 2) call abort | 14 if (i .ne. 1 .or. j .ne. 2) STOP 2 |
15 read (20,*) I,J | 15 read (20,*) I,J |
16 if (i .ne. 5 .or. j .ne. 6) call abort | 16 if (i .ne. 5 .or. j .ne. 6) STOP 3 |
17 close(20) | 17 close(20) |
18 end | 18 end |