PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_constructor_29.f03
blob03534fa81ed7d3823db12a6ce4edffb016ce4d3c
1 ! { dg-do compile }
3 ! PR fortran/36492
4 ! Similar to the ICE-test, but now test it works for real constants.
6 implicit none
8 integer, parameter :: a = 42
9 type t
10   character (a) :: arr (1) = [ "a" ]
11 end type t
13 end