2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_constructor_30.f03
blob587ce03977dc123e9767bc79f7e541014dd3e34e
1 ! { dg-do compile }
3 ! PR fortran/36492
4 ! Similar to the ICE-test, but now test for complaint about constant
5 ! specification expression.
7 implicit none
9 integer :: a = 42
10 type t
11   character (a) :: arr (1) = [ "a" ]
12   ! { dg-error "in the expression" "" { target *-*-* } 11 }
13   ! { dg-error "specification expression" "" { target *-*-* } 11 }
14 end type t
16 end