[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr19657.f
bloba2b6d73229b976286b964937f3ac330de20aab32
1 c { dg-do run }
2 c pr 19657
3 c test namelist not skipped if ending with logical.
4 c Based on example provided by fuyuki@ccsr.u-tokyo.ac.jp
6 program pr19657
7 implicit none
8 logical l
9 integer i, ctr
10 namelist /nm/ i, l
11 open (10, status = "scratch")
12 write (10,*) "&nm i=1,l=t &end"
13 write (10,*) "&nm i=2 &end"
14 write (10,*) "&nm i=3 &end"
15 rewind (10)
16 do ctr = 1,3
17 read (10,nm,end=190)
18 if (i.ne.ctr) STOP 1
19 enddo
20 190 continue
21 end