aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/assumed_rank_3.f90
blob: ab5c0d90b397e38bbd81b1329b94b64b57238e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
! { dg-do run }
! { dg-options "-fcheck=bounds" }
! { dg-shouldfail "Array reference out of bounds" }
!
! PR fortran/48820
!
! Do assumed-rank bound checking

implicit none
integer :: a(4,4)
call bar(a)
contains
  subroutine bar(x)
    integer :: x(..)
    print *, ubound(x,dim=3)  ! << wrong dim
  end subroutine
end

! { dg-output "Fortran runtime error: Array reference out of bounds" }