]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-borrow-from-temporary.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / borrowck-borrow-from-temporary.stderr
1 error[E0515]: cannot return value referencing temporary value
2   --> $DIR/borrowck-borrow-from-temporary.rs:10:5
3    |
4 LL |     let &Foo(ref x) = &id(Foo(3));
5    |                        ---------- temporary value created here
6 LL |     x
7    |     ^ returns a value referencing data owned by the current function
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0515`.