diff options
Diffstat (limited to 'third_party/git/t/t4018/fortran-external-function')
-rw-r--r-- | third_party/git/t/t4018/fortran-external-function | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/git/t/t4018/fortran-external-function b/third_party/git/t/t4018/fortran-external-function new file mode 100644 index 000000000000..5a2d85d3aa41 --- /dev/null +++ b/third_party/git/t/t4018/fortran-external-function @@ -0,0 +1,9 @@ +function RIGHT(a, b) result(c) + +integer, intent(in) :: ChangeMe +integer, intent(in) :: b +integer, intent(out) :: c + +c = a+b + +end function RIGHT |