2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_constructor_type_12.f03
blobe06fd47991a70194bafb31ba3bcd0f47efe8c4ff
1 ! { dg-do run }
3 ! PR fortran/27997
5 ! Array constructor with typespec.
7 real :: a(3)
8 integer :: j(3)
9 a = (/ integer :: 1.4, 2.2, 3.33  /)
10 j = (/ 1.4, 2.2, 3.33  /)
11 if( any(a /= j )) call abort()
12 end