]> git.proxmox.com Git - rustc.git/blame - tests/ui/static/static-region-bound.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / static / static-region-bound.stderr
CommitLineData
48663c56 1error[E0716]: temporary value dropped while borrowed
0731742a 2 --> $DIR/static-region-bound.rs:10:14
8faf50e0 3 |
532ac7d7 4LL | let x = &id(3);
487cf647 5 | ^^^^^ creates a temporary value which is freed while still in use
b7449926 6LL | f(x);
48663c56 7 | ---- argument requires that borrow lasts for `'static`
8faf50e0 8LL | }
48663c56 9 | - temporary value is freed at the end of this statement
8faf50e0
XL
10
11error: aborting due to previous error
12
48663c56 13For more information about this error, try `rustc --explain E0716`.