]> git.lizzy.rs Git - rust.git/blob - tests/ui/static/static-lifetime-bound.stderr
core: Support variety of atomic widths in width-agnostic functions
[rust.git] / tests / ui / static / static-lifetime-bound.stderr
1 warning: unnecessary lifetime parameter `'a`
2   --> $DIR/static-lifetime-bound.rs:1:6
3    |
4 LL | fn f<'a: 'static>(_: &'a i32) {}
5    |      ^^
6    |
7    = help: you can use the `'static` lifetime directly, in place of `'a`
8
9 error[E0597]: `x` does not live long enough
10   --> $DIR/static-lifetime-bound.rs:5:7
11    |
12 LL |     f(&x);
13    |     --^^-
14    |     | |
15    |     | borrowed value does not live long enough
16    |     argument requires that `x` is borrowed for `'static`
17 LL | }
18    | - `x` dropped here while still borrowed
19
20 error: aborting due to previous error; 1 warning emitted
21
22 For more information about this error, try `rustc --explain E0597`.