]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/relate_tys/var-appears-twice.stderr
Rollup merge of #106113 - krasimirgg:llvm-16-ext-tyid, r=nikic
[rust.git] / tests / ui / nll / relate_tys / var-appears-twice.stderr
1 error[E0597]: `b` does not live long enough
2   --> $DIR/var-appears-twice.rs:20:38
3    |
4 LL |     let x: DoubleCell<_> = make_cell(&b);
5    |            -------------             ^^ borrowed value does not live long enough
6    |            |
7    |            type annotation requires that `b` is borrowed for `'static`
8 ...
9 LL | }
10    | - `b` dropped here while still borrowed
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0597`.