aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/bounds_check_1.f90
blob: c05f4456a11055e490880639c00384e4aae0c7a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! { dg-do run }
! { dg-options "-fbounds-check" }
! PR fortran/27524
    integer :: res(1)
    res = F()
    if (res(1) /= 1) call abort
    contains
      function F()
        integer :: F(1)
        f = 1
      end function F
    end