Hi GHC users!
Does anyone know if an import that is only used by Template Haskell (i.e. not in "actual" code) is reflected in the produced executable?
Example:
import LargeModule(thFunction)
$thfunction
...
Is LargeModule linked in the executable file? (Assume thFunction is not referenced by the code it generates or elsewhere in the example)
Best regards
Jonas