2018-05-19 01:13:53 +03:00
|
|
|
#![deny(single_use_lifetimes)]
|
2018-05-03 18:43:28 -04:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_variables)]
|
|
|
|
|
|
|
|
// Test that we DO warn for a lifetime used only once in an inherent method.
|
|
|
|
|
|
|
|
struct Foo<'f> {
|
|
|
|
data: &'f u32
|
2017-11-23 08:05:58 -05:00
|
|
|
}
|
|
|
|
|
2018-05-03 18:43:28 -04:00
|
|
|
impl<'f> Foo<'f> { //~ ERROR `'f` only used once
|
2022-05-10 21:15:30 +02:00
|
|
|
//~^ HELP elide the single-use lifetime
|
2018-05-03 18:43:28 -04:00
|
|
|
fn inherent_a<'a>(&self, data: &'a u32) { //~ ERROR `'a` only used once
|
2018-10-27 23:40:56 -07:00
|
|
|
//~^ HELP elide the single-use lifetime
|
2018-05-03 18:43:28 -04:00
|
|
|
}
|
2017-11-23 08:05:58 -05:00
|
|
|
}
|
|
|
|
|
2017-12-30 02:25:40 +08:00
|
|
|
fn main() { }
|