Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pdt_29.f03
blob596cc1c48f1c97fc1aea9058277fedf0fd382500
1 ! { dg-do compile }
3 ! Test the fix for PR83866.f90
5 ! Contributed by G Steinmetz  <gscfq@t-online.de>
7 program p
8   type private
9   end type
10    type t
11       class(t), pointer :: a
12    end type
13    type extends(t) :: t2 ! { dg-error "Garbage after | does not have a component" }
14    end type
15 end