PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / data_array_4.f90
blob3df30317eba8e6d588567e5a3422dfe598de06c4
1 ! { dg-do compile }
2 ! PR32928 DATA statement with array element as initializer is rejected
3 IMPLICIT NONE
4 INTEGER , PARAMETER :: NTAB = 3
5 REAL :: SR(NTAB) , SR3(NTAB)
6 DATA SR/NTAB*0.0/ , SR3/NTAB*0.0/
7 end