Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr95586_2.f90
blob81ea6e9fa56b4161b021babc4eb5930e3c9d5331
1 ! { dg-do compile }
4 program test
5 integer, parameter :: n1 = 1
6 implicit type(t) (n1) ! { dg-error "Syntax error" }
7 type t
8 end type
9 end program