rust/tests/ui/issues/issue-27592.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
1.0 KiB
Plaintext
Raw Normal View History

error[E0515]: cannot return value referencing temporary value
--> $DIR/issue-27592.rs:16:14
2018-07-15 21:11:54 +00:00
|
LL | write(|| format_args!("{}", String::from("Hello world")));
| ^^^^^^^^^^^^^^^^^^^---------------------------^
| | |
| | temporary value created here
| returns a value referencing data owned by the current function
|
= note: this error originates in the macro `format_args` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-07-15 21:11:54 +00:00
error[E0515]: cannot return reference to temporary value
--> $DIR/issue-27592.rs:16:14
2018-07-15 21:11:54 +00:00
|
LL | write(|| format_args!("{}", String::from("Hello world")));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ returns a reference to data owned by the current function
|
= note: this error originates in the macro `format_args` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-07-15 21:11:54 +00:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0515`.