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
reflected
The following code:
meta example {α β : Type} (a : α) (γ : α → β → Type) [reflected γ] [reflected a] : reflected (γ a) := by apply_instance
produces the error
type expected at α term has type 1
under the second α on the first line
α
Expected behavior: Lean should construct an instance using `(γ).subst `(a)
`(γ).subst `(a)
Actual behavior: Lean spits out the nonsense error message above
Reproduces how often: Every time
Lean 3.43.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Prerequisites
or feature requests.
Description
The following code:
produces the error
under the second
α
on the first lineSteps to Reproduce
Expected behavior: Lean should construct an instance using
`(γ).subst `(a)
Actual behavior: Lean spits out the nonsense error message above
Reproduces how often: Every time
Versions
Lean 3.43.0
The text was updated successfully, but these errors were encountered: