aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/read_logical.f90
blob: 7b7ba8c3a2524397c06a88e93ae8dcef11ae4cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
! { 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