about summary refs log tree commit diff
path: root/third_party/git/t/t4018/fortran-external-function
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t4018/fortran-external-function')
-rw-r--r--third_party/git/t/t4018/fortran-external-function9
1 files changed, 0 insertions, 9 deletions
diff --git a/third_party/git/t/t4018/fortran-external-function b/third_party/git/t/t4018/fortran-external-function
deleted file mode 100644
index 5a2d85d3aa..0000000000
--- a/third_party/git/t/t4018/fortran-external-function
+++ /dev/null
@@ -1,9 +0,0 @@
-function RIGHT(a, b) result(c)
-
-integer, intent(in) :: ChangeMe
-integer, intent(in) :: b
-integer, intent(out) :: c
-
-c = a+b
-
-end function RIGHT