2018-05-03 22:43:28 +00:00
|
|
|
// Test that we DO warn for a lifetime on an impl used only in `&self`
|
|
|
|
// in a trait method.
|
|
|
|
|
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)]
|
|
|
|
|
|
|
|
struct Foo<'f> {
|
|
|
|
data: &'f u32
|
2017-11-23 13:05:58 +00:00
|
|
|
}
|
|
|
|
|
2018-05-03 22:43:28 +00:00
|
|
|
impl<'f> Iterator for Foo<'f> {
|
|
|
|
type Item = &'f u32;
|
|
|
|
|
|
|
|
fn next<'g>(&'g mut self) -> Option<Self::Item> { //~ ERROR `'g` only used once
|
2018-10-28 06:40:56 +00:00
|
|
|
//~^ HELP elide the single-use lifetime
|
2018-05-03 22:43:28 +00:00
|
|
|
None
|
|
|
|
}
|
2017-11-23 13:05:58 +00:00
|
|
|
}
|
|
|
|
|
2022-05-10 19:15:30 +00:00
|
|
|
trait Bar<'a> {
|
|
|
|
// But we should not warn here.
|
|
|
|
fn bar(x: Foo<'a>);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|