You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.
{-# LANGUAGE TemplateHaskell #-}
importControl.Lens (makeLenses)
dataFoo=Foo{_foo::Int}
makeLenses ''Foo
In this case makeLenses is considered unused and removed by importify. This happens because of this bug in haskell-name library: haskell-suite/haskell-names#98
The text was updated successfully, but these errors were encountered:
See next example:
In this case
makeLenses
is considered unused and removed byimportify
. This happens because of this bug inhaskell-name
library: haskell-suite/haskell-names#98The text was updated successfully, but these errors were encountered: