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

16 lines
294 B
Fortran

! { dg-do compile }
!
! Test the fix for PR83866.f90
!
! Contributed by G Steinmetz <gscfq@t-online.de>
!
program p
type private
end type
type t
class(t), pointer :: a
end type
type extends(t) :: t2 ! { dg-error "Garbage after | does not have a component" }
end type
end