mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
301 B
Plaintext
11 lines
301 B
Plaintext
warning: unnecessary lifetime parameter `'a`
|
|
--> $DIR/equal-hidden-lifetimes.rs:7:25
|
|
|
|
|
LL | fn equal_regions_static<'a: 'static>(x: &'a i32) -> impl Sized {
|
|
| ^^
|
|
|
|
|
= help: you can use the `'static` lifetime directly, in place of `'a`
|
|
|
|
warning: 1 warning emitted
|
|
|