summaryrefslogtreecommitdiffstats
path: root/src/test/ui/single-use-lifetime/two-uses-in-trait-impl.rs
blob: 16431a39fd0e558b0f703d28a93d97f1894f4b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Test that we DO NOT warn for a lifetime on an impl used in both
// header and in an associated type.
//
// check-pass

#![deny(single_use_lifetimes)]
#![allow(dead_code)]
#![allow(unused_variables)]

struct Foo<'f> {
    data: &'f u32,
}

impl<'f> Iterator for Foo<'f> {
    type Item = &'f u32;

    fn next(&mut self) -> Option<Self::Item> {
        None
    }
}

fn main() {}