aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/charlen_08.f90
blob: bab23b01b34cff043a5a7fe5558218e99aea484c (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }
! PR fortran/65173
program p
   type t
   end type
   type, extends(t) :: t2
      character x 'x'  ! { dg-error "error in data declaration" }
   end type
end