aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/namelist_assumed_char.f90
blob: b7d063c78b06bccd9f912faf35d53b85372240b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
! { dg-do compile }
! { dg-options "-std=f95" }

! PR30481 Assumed size character is not allowed in namelist.
! Test case from PR, submitted by Jerry DeLisle <jvdelisle@gcc.gnu.org>
!
! Modifications for PR fortran/47339 / PR fortran/43062:
! Add -std=f95, add bar()
!
subroutine foo(c)
  character*(*) c
  namelist /abc/ c  ! { dg-error "nonconstant character length in namelist" }
end subroutine

subroutine bar(d,n)
  integer :: n
  character(len=n) d
  namelist /abcd/ d  ! { dg-error "nonconstant character length in namelist" }
end subroutine bar