view gcc/testsuite/gfortran.dg/associate_33.f03 @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
line wrap: on
line source

! { dg-do run }
!
! Test the fix for PR83898.f90
!
! Contributed by G Steinmetz  <gscfq@t-online.de>
!
program p
   associate (x => ['1','2'])
      if (any (x .ne. ['1','2'])) STOP 1
   end associate
end