aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/stfunc_1.f90
blob: 46dde6286b617766827816efefe2e37821757980 (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do run }
! { dg-options "-std=legacy" }
!
! this is a problem which disappeared between 2005-01-02 and 2005-03-13
! PR 18600
      logical a, b
      a(b) = .true.
      b = .false.
      if (a(.false.)) b = .true.
      if (.not.b) call abort
      end