PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / associate_33.f03
bloba4fcfd6f2a1a571125b61593ba8cfeb5f50f182b
1 ! { dg-do run }
3 ! Test the fix for PR83898.f90
5 ! Contributed by G Steinmetz  <gscfq@t-online.de>
7 program p
8    associate (x => ['1','2'])
9       if (any (x .ne. ['1','2'])) STOP 1
10    end associate
11 end