forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#114511 - chenyukang:yukang-fix-114374-fmt-args, r=b-naber Remove the unhelpful let binding diag comes from FormatArguments Fixes rust-lang#114374
- Loading branch information
Showing
3 changed files
with
86 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#![allow(dead_code)] | ||
|
||
fn bar<'a>(_: std::fmt::Arguments<'a>) {} | ||
fn main() { | ||
let x = format_args!("a {} {} {}.", 1, format_args!("b{}!", 2), 3); | ||
//~^ ERROR temporary value dropped while borrowed | ||
|
||
bar(x); | ||
|
||
let foo = format_args!("{}", "hi"); | ||
//~^ ERROR temporary value dropped while borrowed | ||
bar(foo); | ||
|
||
let foo = format_args!("hi"); // no placeholder in arguments, so no error | ||
bar(foo); | ||
} |
33 changes: 33 additions & 0 deletions
33
tests/ui/borrowck/issue-114374-invalid-help-fmt-args.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
error[E0716]: temporary value dropped while borrowed | ||
--> $DIR/issue-114374-invalid-help-fmt-args.rs:5:13 | ||
| | ||
LL | let x = format_args!("a {} {} {}.", 1, format_args!("b{}!", 2), 3); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^- temporary value is freed at the end of this statement | ||
| | | ||
| creates a temporary value which is freed while still in use | ||
... | ||
LL | bar(x); | ||
| - borrow later used here | ||
| | ||
= note: the result of `format_args!` can only be assigned directly if no placeholders in it's arguments are used | ||
= note: to learn more, visit <https://doc.rust-lang.org/std/macro.format_args.html> | ||
= note: this error originates in the macro `format_args` (in Nightly builds, run with -Z macro-backtrace for more info) | ||
|
||
error[E0716]: temporary value dropped while borrowed | ||
--> $DIR/issue-114374-invalid-help-fmt-args.rs:10:15 | ||
| | ||
LL | let foo = format_args!("{}", "hi"); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^- temporary value is freed at the end of this statement | ||
| | | ||
| creates a temporary value which is freed while still in use | ||
LL | | ||
LL | bar(foo); | ||
| --- borrow later used here | ||
| | ||
= note: the result of `format_args!` can only be assigned directly if no placeholders in it's arguments are used | ||
= note: to learn more, visit <https://doc.rust-lang.org/std/macro.format_args.html> | ||
= note: this error originates in the macro `format_args` (in Nightly builds, run with -Z macro-backtrace for more info) | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0716`. |