We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code
io::println(fmt!("String %s number %d" "foo" 13));
compiles and produces the same output as
io::println(fmt!("String %s number %d", "foo", 13));
The text was updated successfully, but these errors were encountered:
Not critical for 0.7. Nominating for milestone 1 (well-defined).
Sorry, something went wrong.
Accepted. The input to the fmt! macro needs to be written down.
fmt!
Disallow non-comma-delimited arguments to fmt! and bytes!
339295a
Closes rust-lang#4982.
5afb3d2
Successfully merging a pull request may close this issue.
This code
compiles and produces the same output as
The text was updated successfully, but these errors were encountered: