summaryrefslogtreecommitdiff
path: root/t/t4018/fortran-comment-keyword
diff options
context:
space:
mode:
Diffstat (limited to 't/t4018/fortran-comment-keyword')
-rw-r--r--t/t4018/fortran-comment-keyword15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/t4018/fortran-comment-keyword b/t/t4018/fortran-comment-keyword
new file mode 100644
index 0000000000..c5dbdb4c61
--- /dev/null
+++ b/t/t4018/fortran-comment-keyword
@@ -0,0 +1,15 @@
+ module a
+
+ contains
+
+ subroutine RIGHT (funcA, funcB)
+
+ real funcA ! grid function a
+ real funcB ! grid function b
+
+ real ChangeMe
+ integer broken
+
+ end subroutine RIGHT
+
+ end module a