Increase timeout factor for hppa*-*-* in gcc.dg/long_branch.c
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr93499.f90
blobe3e1eda7781d232a8254974ad3ee834a506ccf3c
1 ! { dg-do compile }
2 ! PR 93499 - this used to ICE. Original test case by Gerhard Steinmetz.
4 program p
5 integer :: a((0.)/0) ! { dg-error "must be constant of INTEGER type" }
6 type t(n)
7 integer, len :: n
8 end type t
9 type(t((0)/0)) :: x ! { dg-error "does not simplify to an INTEGER constant" }
10 end