AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / deferred_character_36.f90
blob65f2464e54ed3ac337015a8ac026228729d07f7a
1 ! { dg-do run }
3 ! Test the fix for PR93833, which ICEd as shown.
5 ! Contributed by Gerhard Steinmetz <gscfq@t-online.de>
7 program p
8 character(:), allocatable :: c
9 c = "wxyz"
10 contains
11 subroutine s
12 associate (y => [c])
13 if (any(y /= [c])) stop 1
14 end associate
15 end
16 end