packages feed

hls-floskell-plugin-1.0.0.0: test/testdata/Floskell.formatted_document.hs

module Floskell where

import           Data.List
import           Prelude
import           Data.Int

foo :: Int -> Int
foo 3 = 2
foo x = x

bar :: String -> IO String
bar s = do
  x <- return "hello"
  return "asdf"

data Baz = Baz { a :: Int, b :: String }