]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/relate_tys/var-appears-twice.stderr
Rollup merge of #107189 - cjgillot:meta-adt, r=compiler-errors
[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 b = 44;
5    |         - binding `b` declared here
6 ...
7 LL |     let x: DoubleCell<_> = make_cell(&b);
8    |            -------------             ^^ borrowed value does not live long enough
9    |            |
10    |            type annotation requires that `b` is borrowed for `'static`
11 ...
12 LL | }
13    | - `b` dropped here while still borrowed
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0597`.