Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr91714.f90
blob8b855d903183d4356329db245c7c18b4312d8839
1 ! { dg-do compile }
2 ! Contributed by Gerhard Steinmetz
3 program p
4 typea ! { dg-error "Mangled derived type" }
5 integer b
6 end type ! { dg-error "Expecting END PROGRAM" }
7 type(a) :: c ! { dg-error "is being used before it" }
8 c = a(1)
9 print *, c
10 end