Retro68/gcc/gcc/testsuite/gfortran.dg/read_logical.f90
2018-12-28 16:30:48 +01:00

19 lines
363 B
Fortran

! { dg-do run }
! { dg-options "-std=legacy" }
!
! PR 26554 : Test logical read from string. Test case derived from PR.
! Submitted by Jerry DeLisle <jvdelisle@verizon.net>.
program bug
implicit none
character*30 :: strg
logical l
l = .true.
strg = "false"
read (strg,*) l
if (l) STOP 1
strg = "true"
read (strg,*) l
if (.not.l) STOP 2
end