2018-05-03 17:43:28 -05:00
|
|
|
// Test that we DO NOT warn for a lifetime on an impl used in both
|
|
|
|
// header and in an associated type.
|
|
|
|
//
|
2020-10-24 19:22:53 -05:00
|
|
|
//@ check-pass
|
2018-05-03 17:43:28 -05:00
|
|
|
|
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)]
|
|
|
|
|
|
|
|
struct Foo<'f> {
|
2020-10-24 19:22:53 -05:00
|
|
|
data: &'f u32,
|
2017-11-23 07:05:58 -06:00
|
|
|
}
|
|
|
|
|
2018-05-03 17:43:28 -05:00
|
|
|
impl<'f> Iterator for Foo<'f> {
|
|
|
|
type Item = &'f u32;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
|
None
|
|
|
|
}
|
2017-11-23 07:05:58 -06:00
|
|
|
}
|
|
|
|
|
2020-10-24 19:22:53 -05:00
|
|
|
fn main() {}
|