packages feed

ghc-boot-th-8.6.1: GHC/ForeignSrcLang/Type.hs

{-# LANGUAGE DeriveGeneric #-}
module GHC.ForeignSrcLang.Type
  ( ForeignSrcLang(..)
  ) where

import GHC.Generics (Generic)

data ForeignSrcLang
  = LangC | LangCxx | LangObjc | LangObjcxx | RawObject
  deriving (Eq, Show, Generic)