rust/tests/ui/nll/relate_tys/var-appears-twice.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

18 lines
546 B
Plaintext

error[E0597]: `b` does not live long enough
--> $DIR/var-appears-twice.rs:20:38
|
LL | let b = 44;
| - binding `b` declared here
...
LL | let x: DoubleCell<_> = make_cell(&b);
| ------------- ^^ borrowed value does not live long enough
| |
| type annotation requires that `b` is borrowed for `'static`
...
LL | }
| - `b` dropped here while still borrowed
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0597`.