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
import Aesop.Main
inductiveEven : Nat → Prop
| zero : Even Nat.zero
| plus_two {n} : Even n → Even (n + 2)
attribute [aesop safe] Even.zero Even.plus_two
example : Even 1000 := by aesop
gives
error: aesop/linkProofs: internal error: reconstructed proof of goal 19 is type-incorrect
The text was updated successfully, but these errors were encountered:
gives
The text was updated successfully, but these errors were encountered: