summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr107679.f90
blob: 33a52fb5ef224c3a1b06927003ff14babf43d466 (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }

subroutine s1(x)
   integer, intent(out) :: x
end
subroutine s2(z)
   integer, value :: z
   call s1(z)
end