mirror of https://github.com/rust-lang/rust
10 lines
309 B
Rust
10 lines
309 B
Rust
// Check that `unused_lifetimes` lint doesn't duplicate a "parameter is never used" error.
|
|
// Fixed in <https://github.com/rust-lang/rust/pull/96833>.
|
|
// Issue: <https://github.com/rust-lang/rust/issues/72587>.
|
|
|
|
#![warn(unused_lifetimes)]
|
|
struct Foo<'a>;
|
|
//~^ ERROR parameter `'a` is never used
|
|
|
|
fn main() {}
|