2018-05-18 22:13:53 +00:00
|
|
|
#![deny(single_use_lifetimes)]
|
2018-05-03 22:43:28 +00:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_variables)]
|
|
|
|
|
2018-10-28 07:13:18 +00:00
|
|
|
// Test that we DO warn for a lifetime used only once in an impl, and that we
|
|
|
|
// don't warn for the anonymous lifetime.
|
2018-05-03 22:43:28 +00:00
|
|
|
|
|
|
|
struct Foo<'f> {
|
|
|
|
data: &'f u32
|
2017-11-23 13:05:58 +00:00
|
|
|
}
|
|
|
|
|
2018-05-03 22:43:28 +00:00
|
|
|
impl<'f> Foo<'f> { //~ ERROR `'f` only used once
|
|
|
|
fn inherent_a(&self) {
|
|
|
|
}
|
2017-11-23 13:05:58 +00:00
|
|
|
}
|
|
|
|
|
2018-10-28 07:13:18 +00:00
|
|
|
impl Foo<'_> {
|
|
|
|
fn inherent_b(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-12-29 18:25:40 +00:00
|
|
|
fn main() { }
|