packages feed

aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/ExistentialQuantification/existential-prefix-context.hs

{- ORACLE_TEST pass -}
{-# LANGUAGE ExistentialQuantification #-}

module ExistentialPrefixContext where

data Box = forall a. Show a => Box a

render :: Box -> String
render (Box x) = show x