We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import Std.Tactic.RCases theorem aux (h : 0 < 2) : ∃ n : Nat, n = 2 := ⟨2, rfl⟩ example : True := by rcases aux ?_ with ⟨x, h⟩ trivial
I would expect a side goal to be created (like in lean3), but get "don't know how to synthesize placeholder for argument 'h'"
The text was updated successfully, but these errors were encountered:
Currently my workaround is
have := aux ?_ rcases this with ⟨x, h⟩
which is kind of annoying.
Sorry, something went wrong.
No branches or pull requests
I would expect a side goal to be created (like in lean3), but get "don't know how to synthesize placeholder for argument 'h'"
The text was updated successfully, but these errors were encountered: