-
Notifications
You must be signed in to change notification settings - Fork 371
Internal error related to generalisable variables #3655
New issue
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
Labels
generalize
Related to generalisable variables
not-in-changelog
This issue should not be listed in the changelog.
type: bug
Issues and pull requests about actual bugs
Milestone
Comments
Since that generalisable variables is a feature not released, the closed issues with label |
I can still trigger this internal error: open import Agda.Builtin.Bool
postulate
A : Set
F : Bool → Set
F true = A
F false = A
data D {b : Bool} (x : F b) : Set where
variable
b : Bool
x : F b
postulate
f : D x → (P : F b → Set) → P x The inferred type of {x : F "dummyTerm: src/full/Agda/TypeChecking/Generalize.hs:416"}
{b : Bool} →
D x → (P : F b → Set) → P x |
UlfNorell
added a commit
that referenced
this issue
Apr 3, 2019
UlfNorell
added a commit
that referenced
this issue
Apr 3, 2019
UlfNorell
added a commit
that referenced
this issue
Apr 4, 2019
This was referenced Apr 4, 2019
andreasabel
added a commit
that referenced
this issue
Sep 10, 2024
andreasabel
added a commit
that referenced
this issue
Sep 10, 2024
andreasabel
added a commit
that referenced
this issue
Sep 10, 2024
fredins
pushed a commit
to fredins/agda
that referenced
this issue
Nov 24, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
generalize
Related to generalisable variables
not-in-changelog
This issue should not be listed in the changelog.
type: bug
Issues and pull requests about actual bugs
With Agda 2.6.0-29a2758:
If I replace the final underscore with a hole and try to give
P _ _ x
, then I get the following error message:The text was updated successfully, but these errors were encountered: