lean4-htt/tests/lean/run/lcnf_simp_let.lean

13 lines
330 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

class OMonad (W : Type u → Type v) where
class MonadTrans (T : (Type _ → Type _) → (Type _ → Type _)) where
instance [OMonad m] [MonadTrans T] : OMonad (T m) where
instance : OMonad Id where
instance : MonadTrans (StateT σ) where
class LawfulOMonad (W) [OMonad W] where
instance : LawfulOMonad (StateT σ Id) where