comparison gcc/testsuite/gfortran.dg/associate_33.f03 @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
130:e108057fa461 132:d34655255c78
1 ! { dg-do run }
2 !
3 ! Test the fix for PR83898.f90
4 !
5 ! Contributed by G Steinmetz <gscfq@t-online.de>
6 !
7 program p
8 associate (x => ['1','2'])
9 if (any (x .ne. ['1','2'])) STOP 1
10 end associate
11 end