diff options
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.hs | 11 |
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 4b75cee13989..000000000000 --- 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 |