(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
bounds_check_1.f90
! { dg-do run }
! { dg-options "-fbounds-check" }
! PR fortran/27524
    integer :: res(1)
    res = F()
    if (res(1) /= 1) STOP 1
    contains
      function F()
        integer :: F(1)
        f = 1
      end function F
    end