diff options
Diffstat (limited to 'Tests/FortranModules/Issue25252/lib.f90')
-rw-r--r-- | Tests/FortranModules/Issue25252/lib.f90 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/FortranModules/Issue25252/lib.f90 b/Tests/FortranModules/Issue25252/lib.f90 new file mode 100644 index 0000000..a6d7fa6 --- /dev/null +++ b/Tests/FortranModules/Issue25252/lib.f90 @@ -0,0 +1,11 @@ +module lib + +implicit none + +contains + +pure real function func() +func = 1.0 +end function + +end module |