aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/char_length_4.f90
blob: 13a9b781bbe5294fc2aef868c1a03560879188e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! { dg-do compile }
! tests the fix for PR31540, in which the character lengths in
! parentheses were not resolved.
!
! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
!
        subroutine pfb()
        implicit none
        external pfname1, pfname2
        character ((136)) pfname1
        character ((129+7)) pfname2
        return
        end