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