]> git.proxmox.com Git - rustc.git/blob - tests/ui/borrowck/borrowck-borrow-from-temporary.stderr
New upstream version 1.76.0+dfsg1
[rustc.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 1 previous error
10
11 For more information about this error, try `rustc --explain E0515`.