Closed
Description
These combinations are all rejected, when some should probably be accepted.
format!("{1:#<0$s}", "", 10) // seems like a parser bug
format!("{:#<name$}", "", name=10) // seems like a nice parser feature
Accepting names of arguments for width/precision needs to make sure that it doesn't create ambiguities with the existing syntax.