We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
fn main() { println!(format!("{}",123)); }
When compiled, rustc will prints:
macro.c:12:11: 12:17 error: macro undefined: 'format' macro.c:12 println!(format!("{}",123)); ^~~~~~ macro.c:12:11: 12:17 error: macro undefined: 'format' macro.c:12 println!(format!("{}",123)); ^~~~~~ macro.c:12:11: 12:17 error: macro undefined: 'format' macro.c:12 println!(format!("{}",123)); ^~~~~~ macro.c:12:11: 12:17 error: macro undefined: 'format' macro.c:12 println!(format!("{}",123)); ^~~~~~ macro.c:12:11: 12:17 error: macro undefined: 'format' macro.c:12 println!(format!("{}",123)); ............
The text was updated successfully, but these errors were encountered:
Near-duplicate of #11692. Is this still reproducible for the recent master?
Sorry, something went wrong.
@lifthrasiir I'm using
rustc --version rustc 0.10-pre (89b1686 2014-02-13 16:32:01 -0800) host: x86_64-unknown-linux-gnu
I'll try the latest rustc in master later.
Closing as a dupe of #11692, which was fixed by 0bdfd0f
This bug has been fixed by #11692.
Auto merge of rust-lang#12464 - harpsword:fix-inline-variable-mismatc…
7b663a3
…hed-type, r=Veykril feat: fix inline variable produce mismatched type wrap reference for RefExpr initializer to fix rust-lang#12453
No branches or pull requests
When compiled, rustc will prints:
The text was updated successfully, but these errors were encountered: