packages feed

llvm-general-3.3.13.1: src/LLVM/General/Internal/Inject.hs

{-# LANGUAGE MultiParamTypeClasses #-}
module LLVM.General.Internal.Inject where

class Inject a b where
  inject :: a -> b

instance Inject a a where
  inject = id