mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
724 B
Plaintext
20 lines
724 B
Plaintext
error[E0515]: cannot return value referencing function parameter
|
|
--> $DIR/regions-ref-in-fn-arg.rs:5:5
|
|
|
|
|
LL | fn arg_item(box ref x: Box<isize>) -> &'static isize {
|
|
| --------- function parameter borrowed here
|
|
LL | x
|
|
| ^ returns a value referencing data owned by the current function
|
|
|
|
error[E0515]: cannot return value referencing function parameter
|
|
--> $DIR/regions-ref-in-fn-arg.rs:11:22
|
|
|
|
|
LL | with(|box ref x| x)
|
|
| --------- ^ returns a value referencing data owned by the current function
|
|
| |
|
|
| function parameter borrowed here
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0515`.
|