Skip to content

Commit

Permalink
exclude types with free variables from type_morespecific (#35555)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson authored Apr 27, 2020
1 parent 4c19f96 commit 0cedde6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/subtype.c
Original file line number Diff line number Diff line change
Expand Up @@ -3847,6 +3847,8 @@ JL_DLLEXPORT int jl_type_morespecific(jl_value_t *a, jl_value_t *b)
{
if (obviously_disjoint(a, b, 1))
return 0;
if (jl_has_free_typevars(a) || jl_has_free_typevars(b))
return 0;
if (jl_subtype(b, a))
return 0;
if (jl_subtype(a, b))
Expand Down

2 comments on commit 0cedde6

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Something went wrong when running your job:

NanosoldierError: failed to run tests: IOError: sendfile: no space left on device (ENOSPC)

Logs and partial data can be found here
cc @maleadt

Please sign in to comment.