diff options
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/repl-targets/Foo.hs')
-rw-r--r-- | third_party/bazel/rules_haskell/tests/repl-targets/Foo.hs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/third_party/bazel/rules_haskell/tests/repl-targets/Foo.hs b/third_party/bazel/rules_haskell/tests/repl-targets/Foo.hs deleted file mode 100644 index 5e5138418d5d..000000000000 --- a/third_party/bazel/rules_haskell/tests/repl-targets/Foo.hs +++ /dev/null @@ -1,9 +0,0 @@ -{-# LANGUAGE ForeignFunctionInterface #-} - -module Foo (foo) where - -foreign import ccall "c_add_one" - c_add_one :: Int -> Int - -foo :: Int -> Int -foo = (+ 5) . c_add_one |