lean4-htt/old_tests/tests/lean/run/reserve.lean
2018-04-10 12:56:55 -07:00

8 lines
178 B
Text

reserve infix `=?=`:50
reserve infixr `&&&`:25
notation a `=?=` b := eq a b
notation a `&&&` b := and a b
set_option pp.notation false
#check λ a b : nat, a =?= b &&& b =?= a