diff options
Diffstat (limited to 'test cases/fortran/12 submodule/parent.f90')
-rw-r--r-- | test cases/fortran/12 submodule/parent.f90 | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test cases/fortran/12 submodule/parent.f90 b/test cases/fortran/12 submodule/parent.f90 new file mode 100644 index 0000000..efc7cf6 --- /dev/null +++ b/test cases/fortran/12 submodule/parent.f90 @@ -0,0 +1,26 @@ +module parent +real, parameter :: pi = 4.*atan(1.) +real :: tau + +interface +module elemental real function pi2tau(pi) + real, intent(in) :: pi +end function pi2tau + +module subroutine good() +end subroutine good +end interface + +end module parent + +program main + +use parent + +tau = pi2tau(pi) + +print *,'pi=',pi, 'tau=', tau + +call good() + +end program |