summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-ref-in-fn-arg.stderr
blob: ccba6c59b616ec24e363bbbb0cd493a3ba8a5ff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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`.