Open
Description
I'm using rust_cmd_lib to do some command execution, and on this simple command:
let id = run_fun!(id -u).context(h!())?;
rustfmt formats it to:
let id = run_fun!(id - u).context(h!())?;
Which is definitely not what I want.