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