packages feed

ghcide-1.2.0.0: test/data/hiding/HideFunction.expected.append.E.hs

module HideFunction where

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

theFun = fromList

theOp = (++)