hls-explicit-record-fields-plugin-1.0.1.0: test/testdata/noop/Prefix.hs
{-# LANGUAGE Haskell2010 #-}
module Prefix where
data MyRec = MyRec
{ foo :: Int
, bar :: Int
}
convertMe :: MyRec -> String
convertMe (foo' `MyRec` bar') = show foo' ++ show bar'