URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [read_logical.f90] - Rev 313
Go to most recent revision | Compare with Previous | Blame | View Log
! { 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) call abort()
strg = "true"
read (strg,*) l
if (.not.l) call abort()
end
Go to most recent revision | Compare with Previous | Blame | View Log