c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / hollerith_9.f90
blobcfa16209e93b277e9992d1fa67d7a8be64ecd71b
1 ! { dg-do compile }
2 ! PR 91800 - this used to cause an ICE.
3 module m
4 type t(n) ! { dg-error "does not have a component corresponding to parameter" }
5 integer, len :: n = 4habcd ! { dg-error "Initialization of structure component with a HOLLERITH constant" }
6 end type
7 end