-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Labels
regressionRegression in behavior compared to a previous versionRegression in behavior compared to a previous version
Description
Doing
eltype(Vector{Number}([1, 2, 3]) + 1)
eltype(Vector{Number}([1, 2, 3]) - 1)
eltype(Vector{Number}([1, 2, 3]) * 1)
eltype(Vector{Number}([1, 2, 3]) / 1)I would expect the result to be Number in all four cases. Indeed, this has been the case prior to dc12cc6 aka 0.4.0-dev+3331. Now however, only the first three yield Number, while the last one - division - gives ANY. Is there a good reason for this inconsistency or is this a bug?
Metadata
Metadata
Assignees
Labels
regressionRegression in behavior compared to a previous versionRegression in behavior compared to a previous version