Retro68/gcc/gcc/testsuite/gfortran.dg/pdt_17.f03
2018-12-28 16:30:48 +01:00

12 lines
277 B
Fortran

! { dg-do compile }
!
! Test the fix for PR82587
!
! Contributed by G Steinmetz <gscfq@t-online.de>
!
program p
type t(a) ! { dg-error "does not have a component" }
integer(kind=t()) :: x ! { dg-error "used before it is defined" }
end type
end