rust/tests/ui/single-use-lifetime/two-uses-in-fn-arguments.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
339 B
Rust
Raw Normal View History

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