rust/tests/ui/single-use-lifetime/two-uses-in-inherent-impl-header.rs

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

18 lines
282 B
Rust
Raw Normal View History

2018-05-03 17:43:28 -05:00
// Test that we DO NOT warn for a lifetime used twice in an impl.
//
// 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)]
struct Foo<'f> {
data: &'f u32,
}
2018-05-03 17:43:28 -05:00
impl<'f> Foo<'f> {
fn inherent_a(&self, data: &'f u32) {}
}
fn main() {}