-
Notifications
You must be signed in to change notification settings - Fork 25
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
implement ambiguity hint #71
Conversation
Codecov Report
@@ Coverage Diff @@
## master #71 +/- ##
==========================================
+ Coverage 73.05% 73.66% +0.60%
==========================================
Files 10 10
Lines 605 619 +14
==========================================
+ Hits 442 456 +14
Misses 163 163
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
bump @tkf |
Thanks for the ping! |
Registering JuliaRegistries/General#55764 |
sigfix = typeintersect(m2.sig, sigfix) | ||
if isa(Base.unwrap_unionall(sigfix), DataType) && sigfix <: Tuple | ||
let sigfix = sigfix | ||
if all(m->Base.morespecific(sigfix, m.sig), [m1, m2]) |
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 broke Julia v1.0-1.3:
julia> Base.morespecific
ERROR: UndefVarError: morespecific not defined
resolve #52