aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/intent_used_1.f90
blob: ecc06e989cea6781a5b6c56fa9fcf64e4a5401ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
! { dg-do compile }
! Tests the fix for the regression caused by the patch for PR20869
! which itself is tested and described by intrinsic_external_1.f90
!
! reported to the fortran list by Dominique Dhumieres  dominiq@lps.ens.fr

MODULE global
   INTERFACE
      SUBROUTINE foo(i, j)
      IMPLICIT NONE
      INTEGER :: j
      integer, DIMENSION(j,*) :: i ! This constituted usage of j and so triggered....
      INTENT (IN) j  ! Would give "Cannot change attributes of symbol at (1) after it has been used"
      INTENT (INOUT) i
      END SUBROUTINE foo
   END INTERFACE
END MODULE global