hls-ormolu-plugin-1.0.0.0: test/testdata/Ormolu.expected.hs
module Ormolu where
import Data.Int
import Data.List
import Prelude
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}