summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'Tests')
-rw-r--r--Tests/FortranModules/Submodules/child.f906
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/FortranModules/Submodules/child.f90 b/Tests/FortranModules/Submodules/child.f90
index 838ab61..c314835 100644
--- a/Tests/FortranModules/Submodules/child.f90
+++ b/Tests/FortranModules/Submodules/child.f90
@@ -1,10 +1,10 @@
! Test the notation for a 1st-generation direct
! descendant of a parent module
-submodule ( parent ) child
+SUBMODULE ( parent ) child
implicit none
-contains
+CONTAINS
module function child_function() result(child_stuff)
logical :: child_stuff
child_stuff=.true.
end function
-end submodule child
+END SUBMODULE child