(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.fortran-torture/
compile/
contained_3.f90
! Program to check using parent variables in more than one contained function
program contained_3
   implicit none
   integer var
contains
   subroutine one
      var = 1
   end subroutine
   subroutine two
      var = 2
   end subroutine
end program