[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / gfortran.dg / associate_33.f03
blob1f87b22e8e48836fbbafd455541e2f2ebd706f1a
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'])) call abort
10    end associate
11 end