]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/return-ref-mut-issue-46557.stderr
Auto merge of #105121 - oli-obk:simpler-cheaper-dump_mir, r=nnethercote
[rust.git] / src / test / ui / nll / return-ref-mut-issue-46557.stderr
1 error[E0515]: cannot return value referencing temporary value
2   --> $DIR/return-ref-mut-issue-46557.rs:5:5
3    |
4 LL |     let ref mut x = 1234543;
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`.