view gcc/testsuite/gfortran.dg/read_logical.f90 @ 128:fe568345ddd5

fix CbC-example
author mir3636
date Wed, 11 Apr 2018 19:32:28 +0900
parents 04ced10e8804
children 84e7813d76e9
line wrap: on
line source

! { 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