Add test cases that reproduce #7241.
[cabal.git] / cabal-testsuite / PackageTests / BuildDeps / TargetSpecificDeps3 / MyLibrary.hs
blob52980f5bb7c8e79a3461cf42a27db70d2bf64e1c
1 module MyLibrary where
3 import qualified Data.ByteString.Char8 as C
4 import Text.PrettyPrint
6 myLibFunc :: IO ()
7 myLibFunc = do
8 putStrLn (render (text "foo"))
9 let text = "myLibFunc"
10 C.putStrLn $ C.pack text