packages feed

haskell-language-server-1.1.0.0: test/testdata/FuncTestError.hs

module Main where

main = putStrLn "hello"

foo :: Int
foo = bb

bb = 5

bug -- no hlint returned because of this, despite redundant do below

baz = do
  putStrLn "hello"

f x = x+1