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
The sorry term fails when the goal is a forall type with trailing opt params, likely due to inconsistent handling of whether to introduce the parameter. The sorry tactic is unaffected.
deffoo : (_ : Nat := 0) → Nat := sorry-- ^^^^^-- type mismatch-- sorryAx (optParam Nat 0 → Nat) false-- has type-- Nat : Type-- but is expected to have type-- optParam Nat 0 → Nat : Typedeffoo' : (_ : Nat := 0) → Nat := bysorry-- ok
The text was updated successfully, but these errors were encountered:
The
sorry
term fails when the goal is a forall type with trailing opt params, likely due to inconsistent handling of whether to introduce the parameter. Thesorry
tactic is unaffected.The text was updated successfully, but these errors were encountered: