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 destruct tactic generates a pattern match, and pattern matching on GADT constructors can introduce evidence into scope. Right now, Wingman just ignores this evidence. #1549 lets us use this argument if the user wrote it, but right now the following will fail:
dataXf=Monadf=>Xfun1::Xf->a->fa
fun1 = _
while
fun1::Xf->a->fa
fun1 X= _
works just fine
The text was updated successfully, but these errors were encountered:
The
destruct
tactic generates a pattern match, and pattern matching on GADT constructors can introduce evidence into scope. Right now, Wingman just ignores this evidence. #1549 lets us use this argument if the user wrote it, but right now the following will fail:while
works just fine
The text was updated successfully, but these errors were encountered: