diff options
Diffstat (limited to 't/t4018/fortran-comment-keyword')
-rw-r--r-- | t/t4018/fortran-comment-keyword | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/t4018/fortran-comment-keyword b/t/t4018/fortran-comment-keyword new file mode 100644 index 0000000..e9206a5 --- /dev/null +++ b/t/t4018/fortran-comment-keyword @@ -0,0 +1,14 @@ + module a + + contains + + subroutine RIGHT (funcA, funcB) + + real funcA ! grid function a + real funcB ! grid function b + + real ChangeMe + + end subroutine RIGHT + + end module a |