summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/read_logical.f90
blob: aa66fc046c19a7308eb742f6b3b30a14ed2d1fdb (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) STOP 1
  strg = "true"
  read (strg,*) l
  if (.not.l) STOP 2
  end