PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_constructor_27.f03
blobde0217a750028327d05959402b2044181a0c02e3
1 ! { dg-do compile }
2 ! { dg-options "-std=gnu" }
4 ! PR fortran/36492
5 ! Check for incorrect error message with -std=f2003.
6 ! Reduced test triggering the ICE mentioned in comment #4, PR 36492.
8 implicit none
10 type t
11   character (a) :: arr (1) = [ "a" ] ! { dg-error "Scalar INTEGER expression" }
12 end type t
14 end