-
Notifications
You must be signed in to change notification settings - Fork 245
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
pattern synonym in Nat.Base
in the way when working with products
#2250
Comments
My bad, duplicate of #2216, known issue. Closing. |
The takeaway is that the issue should even have been fixed now in v2.0 (your example with |
Ah, I didn't even think about checking whether I was using the latest version. Sorry for the trouble and thank you for fixing the issue! |
I'm currently working in a development importing both
Data.Product.Base
andData.Nat.Base
.Every time I have a hole of type
Σ A B
and I refine said hole, the following pattern gets introduced:less-than-or-equal {?} ?
instead of? , ?
. This stems from a pattern-synonym recently introduced inNat.Base
: https://github.com/agda/agda-stdlib/blame/3515c22f3a2c1bd2eeb5fdd504072f67aab3de4d/src/Data/Nat/Base.agda#L366Am I doing something wrong? Or maybe this pattern-synonym should not stay in
Nat.Base
?To reproduce, just try to refine the hole in the following code sample:
The text was updated successfully, but these errors were encountered: