aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/data_char_5.f90
blob: 7556e63c01b819ac589b921b64c45bbb8209dd9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! { dg-do compile }
! PR fortran/99205 - Issues with non-constant character length 

subroutine sub ()
  integer :: ll = 4
  block
    character(ll) :: c(2)
    data c /'a', 'b'/     ! { dg-error "Non-constant character length" }
  end block
contains
  subroutine sub1 ()
    character(ll) :: d(2)
    data d /'a', 'b'/     ! { dg-error "Non-constant character length" }
  end subroutine sub1
end subroutine sub