about summary refs log tree commit diff
path: root/tests/ui/single-use-lifetime/dedup.rs
blob: 16b39609a6d34cb26fd7dfe276750ae6708e7747 (plain)
1
2
3
4
5
6
7
8
9
// 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() {}