aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/assumed_charlen_function_4.f90
blob: c8f804465b7c5da676e08be1a49fb29205ade0d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
! { dg-do compile }
! { dg-options "-std=legacy" }
!
! Tests the fix for PR28600 in which the declaration for the
! character length n, would be given the DECL_CONTEXT of 'gee'
! thus causing an ICE.
!
! Contributed by Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
!
subroutine bar(s, n)
 integer n
 character s*(n)
 character*3, dimension(:), pointer :: m
 s = ""
contains
 subroutine gee
    m(1) = s(1:3)
 end subroutine gee
end subroutine bar