-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorcollectionsData structures holding multiple items, e.g. setsData structures holding multiple items, e.g. setscorrectness bug ⚠Bugs that are likely to lead to incorrect results in user code without throwingBugs that are likely to lead to incorrect results in user code without throwing
Description
julia> merge((; a = 1), Base.Pairs((; b = 2, c = 3), (:b,)))
(a = 1, b = 2, c = 3)
julia> merge((; a = 1), collect(Base.Pairs((; b = 2, c = 3), (:b,))))
(a = 1, b = 2)
Noticed in #59269 (comment)
Metadata
Metadata
Assignees
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorcollectionsData structures holding multiple items, e.g. setsData structures holding multiple items, e.g. setscorrectness bug ⚠Bugs that are likely to lead to incorrect results in user code without throwingBugs that are likely to lead to incorrect results in user code without throwing