re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[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