Skip to content
Snippets Groups Projects
Commit 0524210d authored by Oleg Grenrus's avatar Oleg Grenrus
Browse files

Issue 5775 seems to be fixed, let's see

parent 46be823b
No related branches found
No related tags found
No related merge requests found
import Test.Cabal.Prelude import Test.Cabal.Prelude
main = cabalTest $ do main = cabalTest $ do
expectBroken 5775 $ cabal' "v2-run" ["script.hs"] res <- cabal' "v2-run" ["script.lhs"]
return () assertOutputContains "Hello World" res
...@@ -8,4 +8,4 @@ build-depends: base ^>= 4.0 ...@@ -8,4 +8,4 @@ build-depends: base ^>= 4.0
import Prelude import Prelude
main :: IO () main :: IO ()
main = return () main = putStrLn "Hello World"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment