packages feed

ghcide-1.5.0: test/data/hiding/HideFunctionWithoutLocal.expected.hs

module HideFunctionWithoutLocal where

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

theOp = (++)

data Vec a

(++) = undefined