2018-05-18 17:13:53 -05:00
|
|
|
#![deny(single_use_lifetimes)]
|
2018-05-03 17:43:28 -05:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_variables)]
|
|
|
|
|
|
|
|
// Test that we DO NOT warn for a lifetime used just once in a return type,
|
|
|
|
// where that return type is in an inherent method.
|
|
|
|
|
|
|
|
struct Foo<'f> {
|
|
|
|
data: &'f u32
|
2017-11-23 07:05:58 -06:00
|
|
|
}
|
|
|
|
|
2018-05-03 17:43:28 -05:00
|
|
|
impl<'f> Foo<'f> { //~ ERROR `'f` only used once
|
|
|
|
fn inherent_a<'a>(&self) -> &'a u32 { // OK for 'a
|
|
|
|
&22
|
|
|
|
}
|
2017-11-23 07:05:58 -06:00
|
|
|
}
|
|
|
|
|
2017-12-29 12:25:40 -06:00
|
|
|
fn main() { }
|