packages feed

no-recursion-0.1.1.0: tests/Test/Module.hs

{-# LANGUAGE Unsafe #-}

module Test.Module
  ( recDef,
    nonRecDef,
  )
where

import safe "base" Control.Category (Category (id))

{-# ANN module "Recursion" #-}

recDef :: a -> b
recDef = recDef

nonRecDef :: a -> a
nonRecDef = id
{-# ANN nonRecDef "NoRecursion" #-}