1error[E0515]: cannot return value referencing function parameter `x`
2  --> $DIR/return-disjoint-regions.rs:4:5
3   |
4LL |     let y = &x;
5   |             -- `x` is borrowed here
6LL |     (y, y)
7   |     ^^^^^^ returns a value referencing data owned by the current function
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0515`.
12