This:
fn main() {
println!("Hello {0:5}!", "x");
}
prints what I expect:
But this:
fn main() {
println!("Hello {0:5?}!", "x");
}
prints Hello "x"! (play), not:
Is this intentional? If so, the format docs are pretty misleading. Otherwise, a regression perhaps? I'm not sure what is...T-libs?
cc @alexcrichton
This:
prints what I expect:
But this:
prints
Hello "x"!(play), not:Is this intentional? If so, the format docs are pretty misleading. Otherwise, a regression perhaps? I'm not sure what is...T-libs?
cc @alexcrichton