Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gfortran.fortran-torture
/
compile
/
contained_3.f90
blob: da5e8475c54e02a8c449505a0b6ed0782534c829 [
file
] [
log
] [
blame
]
!
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