lean4-htt/tests/lean/run/616.lean
Leonardo de Moura a863f1b8a3 fix: fixes #616
2021-08-07 07:29:54 -07:00

3 lines
109 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.

def bug : Monad (λ α : Type _ => α → Prop) where
pure x := (.=x)
bind s f y := ∃ x, s x ∧ f x y