packages feed

haskell-language-server-2.7.0.0: plugins/hls-refactor-plugin/test/data/hiding/HideFunctionWithoutLocal.hs

module HideFunctionWithoutLocal where

import AVec (fromList)
import BVec (fromList, (++))
import CVec hiding (cons)
import DVec hiding (cons, snoc)
import EVec as E

theOp = (++)

data Vec a

(++) = undefined