packages feed

haskell-language-server-2.7.0.0: plugins/hls-qualify-imported-names-plugin/test/data/OnlyImportedNames.expected.hs

module OnlyImportedNames where

import A

thing1 a = a

thing2 b = b

thing3 = f1 A.a A.c

thing4 = f2 A.b A.d

f1 a = a

f2 c b = let { d = "k"; e = A.a } in c d ++ c b