lean4-htt/tests/lean/rwWithoutOffsetCnstrs.lean
Leonardo de Moura 04b7924154 chore: fix tests
2021-09-16 10:29:38 -07:00

8 lines
222 B
Text

open Lean.Parser.Tactic in
macro "rw0" s:rwRuleSeq : tactic =>
`(rw (config := { offsetCnstrs := false }) $s:rwRuleSeq)
example (m n : Nat) : Nat.ble (n+1) (n+0) = false := by
rw0 [Nat.add_zero]
trace_state
admit