Current release version 0.4.10 seems to have introduced a regression in behaviour in the sense that named formatting arguments, which were legal in the previous versions, are now illegal.
Minimal example:
fn main() {
let name = "John";
log::info!("Hello, {name}", name = name);
}
Is this intended behaviour or a bug?
Current release version
0.4.10seems to have introduced a regression in behaviour in the sense that named formatting arguments, which were legal in the previous versions, are now illegal.Minimal example:
Is this intended behaviour or a bug?