URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [read_logical.f90] - Rev 165
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! 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