[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / gfortran.dg / data_char_2.f90
blob7d3f4852de598656c6ea793fd446b231c82e3b56
1 ! { dg-do run }
2 ! { dg-options "-std=legacy" }
4 ! Test that getting a character from a
5 ! string data works.
7 CHARACTER*10 INTSTR
8 CHARACTER C1
9 DATA INTSTR / '0123456789' /
11 C1 = INTSTR(1:1)
12 if(C1 .ne. '0') STOP 1
14 end