recursive module import using hs-boot and cabal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module A where | |
import {-# SOURCE #-} B | |
data Atyp = Atyp Btyp | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module B where | |
import A | |
data Btyp = Btyp Atyp | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module B where | |
data Btyp | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Name: hsboottest | |
Version: 0.0.999 | |
Synopsis: | |
Description: | |
Author: Ian-Woo Kim | |
Maintainer: Ian-Woo Kim <ianwookim@gmail.com> | |
Build-Type: Simple | |
Cabal-Version: >= 1.8 | |
Data-files: | |
Library | |
ghc-options: -Wall -O2 -threaded -funbox-strict-fields -fno-warn-unused-do-bind | |
ghc-prof-options: -caf-all -auto-all | |
Build-Depends: base>4 | |
Exposed-Modules: | |
A | |
B | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment