blob: bead12356f1f270b4ba6e96cf035b1363cf9edf7 [file] [log] [blame]
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 //~^ ERROR borrowed value does not live long enough
| ^ 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) //~ ERROR borrowed value does not live long enough
| --------- ^ 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`.