packages feed

haskell-language-server-2.7.0.0: plugins/hls-rename-plugin/test/testdata/FunctionName.expected.hs

main = do
    x <- return $ baz 42
    return (baz x)
baz, bar :: Int -> Int
baz x = x + 1
bar = (+ 1) . baz