summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/charlen_07.f90
blob: b1f5627a2fbc52ce62413b86c99c8ac7664fd03d (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 =  ! { dg-error "error in data declaration" }
   end type
end