mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 08:16:56 +00:00
15 lines
378 B
Plaintext
15 lines
378 B
Plaintext
warning: lifetime parameter `'a` never used
|
|
--> $DIR/unused-lifetimes.rs:15:28
|
|
|
|
|
LL | pub fn by_value(_x: unsafe<'a> S) -> usize {
|
|
| -------^^-- help: elide the unused lifetime
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/unused-lifetimes.rs:5:9
|
|
|
|
|
LL | #![warn(unused_lifetimes)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
warning: 1 warning emitted
|
|
|