nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_constructor_type_12.f03
bloba59734fdb8da8c0e135874728efb805f63ceaffb
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 )) STOP 1
12 end