You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Left rewritetheoremlrw_intro_1 : ∀ (x y z : Nat), x = y → y = z → z = x := by
move=>x y z <-
trace_state
move=>->
This gives an unexpected end of input on the last line. It's not related to it being ->; other intro patterns result in the same error. Moving the move=>-> line above trace_state, the error disappears, so it seems inherently related to this being the last tactic in a proof.
The text was updated successfully, but these errors were encountered:
This gives an
unexpected end of input
on the last line. It's not related to it being->
; other intro patterns result in the same error. Moving themove=>->
line abovetrace_state
, the error disappears, so it seems inherently related to this being the last tactic in a proof.The text was updated successfully, but these errors were encountered: