aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/alloc_comp_basics_6.f90
blob: 3ed221db24f0965ef0a780669ed1aa965055205e (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do compile }
!
! PR 58026: Bad error recovery for allocatable component of undeclared type
!
! Contributed by Joost VandeVondele <Joost.VandeVondele@mat.ethz.ch>

  type sysmtx_t
     type(ext_complex_t), allocatable :: S(:)  ! { dg-error "has not been previously defined" }
  end type

end