Skip to content

Instantly share code, notes, and snippets.

@cdsmith
Created November 11, 2018 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdsmith/109f3c84b471573e043204e3f9e463c3 to your computer and use it in GitHub Desktop.
Save cdsmith/109f3c84b471573e043204e3f9e463c3 to your computer and use it in GitHub Desktop.
...
test('T13704b', [], multimod_compile, ['T13704b2', '-main-is T13704b2.program -v0'])
module T13704b1 where
main :: IO ()
main = return ()
-- wrapped by T13704b2.hs
module T13704b2 where
import T13704b1 (main)
program :: IO ()
program = main
-- meant to be compiled with '-main-is T13704b2.program'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment