diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/A.hs | 5 | ||||
-rw-r--r-- | src/B.hs | 4 | ||||
-rw-r--r-- | src/F.hs | 1 |
3 files changed, 3 insertions, 7 deletions
@@ -1,9 +1,8 @@ module A where import Language.Haskell.TH - import F -kaas :: Exp -kaas = LitE (StringL "kaas") +foo :: Exp +foo = LitE (StringL "foo") @@ -3,6 +3,4 @@ module B where import A - --- $([d| foo = $(LitE . StringL . show . isRelevant <$> [t| Ranked 4 Double |]) |]) -$([d| foo = $(return $ kaas) |]) +$([d| bar = $(return foo) |]) @@ -1,5 +1,4 @@ {-# LANGUAGE ForeignFunctionInterface #-} module F where - foreign import ccall "some_c_function" c_some_c_function :: IO () |