lean2/tests/lean/abst.lean

6 lines
173 B
Text
Raw Normal View History

Axiom PlusComm(a b : Int) : a + b == b + a.
Variable a : Int.
Check (Abst (fun x : Int, (PlusComm a x))).
Set pp::implicit true.
Check (Abst (fun x : Int, (PlusComm a x))).