Skip to content

Instantly share code, notes, and snippets.

@mpickering
Created July 22, 2025 12:49
Show Gist options
  • Save mpickering/06215e29f09792d848e98e48aecf18fe to your computer and use it in GitHub Desktop.
Save mpickering/06215e29f09792d848e98e48aecf18fe to your computer and use it in GitHub Desktop.
module A
( b1000, a1000, c1000
) where
import C
a1000 :: ()
a1000 = ()
b1000 :: ()
b1000 = ()
c1000 :: ()
c1000 = ()
module B
( module A
) where
import A (c1000)
import A (b1000)
import A (a1000)
module C() where
a1000,b1000,c1000 :: Int
a1000 = 0
b1000 = 0
c1000 = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment