about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/library-deps/sublib/TestSubLib.hs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/library-deps/sublib/TestSubLib.hs')
-rw-r--r--third_party/bazel/rules_haskell/tests/library-deps/sublib/TestSubLib.hs7
1 files changed, 0 insertions, 7 deletions
diff --git a/third_party/bazel/rules_haskell/tests/library-deps/sublib/TestSubLib.hs b/third_party/bazel/rules_haskell/tests/library-deps/sublib/TestSubLib.hs
deleted file mode 100644
index 1e8d2d4755..0000000000
--- a/third_party/bazel/rules_haskell/tests/library-deps/sublib/TestSubLib.hs
+++ /dev/null
@@ -1,7 +0,0 @@
-{-# LANGUAGE ForeignFunctionInterface #-}
-module TestSubLib (messageEnd) where
-
-messageEnd :: String
-messageEnd = "world " ++ show (foo 10)
-
-foreign import ccall foo :: Int -> Int