2018-05-03 22:43:28 +00:00
|
|
|
// Test that we DO NOT warn when lifetime name is used multiple
|
2018-08-19 13:30:23 +00:00
|
|
|
// arguments, or more than once in a single argument.
|
2018-05-03 22:43:28 +00:00
|
|
|
//
|
2020-10-25 00:22:53 +00:00
|
|
|
//@ check-pass
|
2018-05-03 22:43:28 +00:00
|
|
|
|
2018-05-18 22:13:53 +00:00
|
|
|
#![deny(single_use_lifetimes)]
|
2018-05-03 22:43:28 +00:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_variables)]
|
|
|
|
|
2020-10-25 00:22:53 +00:00
|
|
|
// OK: used twice
|
|
|
|
fn c<'a>(x: &'a u32, y: &'a u32) {}
|
2017-11-23 13:05:58 +00:00
|
|
|
|
2020-10-25 00:22:53 +00:00
|
|
|
// OK: used twice
|
|
|
|
fn d<'a>(x: (&'a u32, &'a u32)) {}
|
2017-11-23 13:05:58 +00:00
|
|
|
|
2020-10-25 00:22:53 +00:00
|
|
|
fn main() {}
|