blob: 93575dccd4d3b3562079eb0add22784d216e1bdc [file] [log] [blame]
// 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() {}