[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / gfortran.dg / alloc_comp_basics_6.f90
blob3ed221db24f0965ef0a780669ed1aa965055205e
1 ! { dg-do compile }
3 ! PR 58026: Bad error recovery for allocatable component of undeclared type
5 ! Contributed by Joost VandeVondele <Joost.VandeVondele@mat.ethz.ch>
7 type sysmtx_t
8 type(ext_complex_t), allocatable :: S(:) ! { dg-error "has not been previously defined" }
9 end type
11 end