haskell-language-server-2.10.0.0: plugins/hls-refactor-plugin/test/data/import-placement/PragmaNotAtTopMultipleComments.expected.hs
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -Wall,
OPTIONS_GHC -Wno-unrecognised-pragmas #-}
-- another comment
-- oh
{- multi line
comment
-}
{-# LANGUAGE TupleSections #-}
{- some comment -}
-- again
class Semigroup a => SomeData a
instance SomeData All
#! nix-shell --pure -i runghc -p "haskellPackages.ghcWithPackages (hp: with hp; [ turtle ])"
{-# OPTIONS_GHC -Wno-unrecognised-pragmas #-}
import Data.Monoid
addOne :: Int -> Int
addOne x = x + 1