about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/indirect-link/src/MyModule.hs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/indirect-link/src/MyModule.hs')
-rw-r--r--third_party/bazel/rules_haskell/tests/indirect-link/src/MyModule.hs11
1 files changed, 0 insertions, 11 deletions
diff --git a/third_party/bazel/rules_haskell/tests/indirect-link/src/MyModule.hs b/third_party/bazel/rules_haskell/tests/indirect-link/src/MyModule.hs
deleted file mode 100644
index 4b75cee139..0000000000
--- a/third_party/bazel/rules_haskell/tests/indirect-link/src/MyModule.hs
+++ /dev/null
@@ -1,11 +0,0 @@
-module MyModule where
-
-foreign import ccall get_thing :: IO Int
-
-getThing :: IO Int
-getThing = get_thing
-
-foreign import ccall set_thing :: Int -> IO ()
-
-setThing :: Int -> IO ()
-setThing = set_thing