aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr104349.f90
blob: 2bea4a372143023381c9041ad0b8e7d7548f5cff (plain)
1
2
3
4
5
6
7
8
! { dg-do compile }
! PR fortran/104349 - reject module variable as character length in PARAMETER
! Contributed by G.Steinmetz

module m
  character(n), parameter :: a(1) = 'b' ! { dg-error "cannot appear" }
  character(n), parameter :: c    = 'b' ! { dg-error "cannot appear" }
end