mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 21:15:18 +03:00
017c504489
Previously, format!("{a}{b}", a=foo(), b=bar()) has foo() and bar() run in a
nondeterminisc order. This is clearly a non-desirable property, so this commit
uses iteration over a list instead of iteration over a hash map to provide
deterministic code generation of these format arguments.