rust/src/test/ui/issues/issue-27592.stderr

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