summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.fortran-torture/execute/contained.f90
blob: 3c7117744dd59e367e8622b50438064a73fc1415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
program contained
   implicit none
   integer i

   i = 0;
   call testproc (40)
   if (i .ne. 42) call abort
contains
   subroutine testproc (p)
      implicit none
      integer p

      if (p .ne. 40) call abort
      i = p + 2
   end subroutine
end program