This is similar to #52 , but the import now names the module.
module Test where
import qualified Data.Foldable as Foldable
data MyID a = MyID a
instance Foldable.Foldable MyID where
foldMap f (MyID a) = f a
main = main
This compiles in GHC, but in MicroHs v0.9.15.0 it fails with undefined value: fold$dflt. If the import is open, there is no failure.
This is similar to #52 , but the import now names the module.
This compiles in GHC, but in MicroHs v0.9.15.0 it fails with
undefined value: fold$dflt
. If the import is open, there is no failure.