blob: 42b0a89e89bf9e1d3f2cea512a8ea8e741f11b4a (
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) STOP 1
end
|