summaryrefslogtreecommitdiffstats
path: root/src/test/ui/single-use-lifetime/two-uses-in-inherent-method-argument-and-return.rs
blob: 06ab6cdbfaebd7b7162da4c9c7a93a100c752fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Test that we DO NOT warn for a lifetime used twice in an impl method and
// header.

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

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

impl<'f> Foo<'f> { //~ ERROR `'f` only used once
    fn inherent_a<'a>(&self, data: &'a u32) -> &'a u32{
      data
    }
}

fn main() { }