Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gfortran.dg/assumed_shape_ranks_1.f90 @ 131:84e7813d76e9
gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 07:37:49 +0900 |
parents | 04ced10e8804 |
children |
line wrap: on
line source
! { dg-do compile } ! Tests fix for PR25070; was no error for actual and assumed shape ! dummy ranks not matching. ! Contributed by Joost VandeVondele <jv244@cam.ac.uk> module addon interface extra function foo (y) integer :: foo (2), y (:) end function foo end interface extra end module addon use addon INTEGER :: I(2,2) I=RESHAPE((/1,2,3,4/),(/2,2/)) CALL TST(I) ! { dg-error "Rank mismatch in argument" } i = foo (i) ! { dg-error "Rank mismatch|Incompatible ranks" } CONTAINS SUBROUTINE TST(I) INTEGER :: I(:) write(6,*) I END SUBROUTINE TST END