-
Notifications
You must be signed in to change notification settings - Fork 63
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
Resolve ambiguity between divexact methods #1484
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1484 +/- ##
=======================================
Coverage 86.86% 86.87%
=======================================
Files 110 110
Lines 28664 28668 +4
=======================================
+ Hits 24900 24904 +4
Misses 3764 3764
... and 2 files with indirect coverage changes 📣 Codecov offers a browser extension for seamless coverage viewing on GitHub. Try it in Chrome or Firefox today! |
Do you have an example? Or was this reported from JET? |
This was reported by JET, but you are right, an example (added as a test case) would be good. I'll look into it. |
Err, Aqua reported it, not JET |
82e5c4c
to
0e03683
Compare
@test divexact(2, y) * y == 2 | ||
@test divexact(big(2), y) * y == 2 | ||
@test divexact(1//2, y) * y == 1//2 | ||
@test divexact(big(1)//2, y) * y == 1//2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This last new test results in an ambiguity error on master, and is fixed by this PR.
Thanks |
No description provided.