summaryrefslogtreecommitdiffstats
path: root/tests/ui/single-use-lifetime/two-uses-in-fn-argument-and-return.rs
blob: f80f3f63c66d920bd6fb747a2559ef178b39f6d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Test that we DO NOT warn when lifetime name is used in
// both the argument and return.
//
// check-pass

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

// OK: used twice
fn c<'a>(x: &'a u32) -> &'a u32 {
    &22
}

fn main() {}