Retro68/gcc/gcc/testsuite/gfortran.dg/charlen_13.f90
2017-10-07 02:16:47 +02:00

11 lines
390 B
Fortran

! { dg-do compile }
! PR fortran/69859
program p
type t
character(2), allocatable :: a(*) ! { dg-error "must have a deferred shape" }
character(*), allocatable :: b(2) ! { dg-error "must have a deferred shape" }
character(*), allocatable :: c(*) ! { dg-error "must have a deferred shape" }
end type
end
! { dg-excess-errors "needs to be a constant specification" }