Closed
Description
Steps to reproduce
I have 2 modules
module MyModule (myid) where
myid :: a -> a
myid a = a
module MyModuleB (myid') where
import qualified MyModule
myid' :: a -> a
myid' = MyModule.myid
I delete myid
in second module and invoke autocompletion when cursor placed after MyModule.
Expected behaviour
In autocompletion list i see only functions from MyModule
Actual behaviour
In autocompletion list i see all function from all modules