diff options
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.hs | 7 |
1 files changed, 7 insertions, 0 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 new file mode 100644 index 000000000000..1e8d2d475552 --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/library-deps/sublib/TestSubLib.hs @@ -0,0 +1,7 @@ +{-# LANGUAGE ForeignFunctionInterface #-} +module TestSubLib (messageEnd) where + +messageEnd :: String +messageEnd = "world " ++ show (foo 10) + +foreign import ccall foo :: Int -> Int |