rust/src/test/ui/single-use-lifetime/two-uses-in-inherent-impl-header.rs
2018-12-25 21:08:33 -07:00

19 lines
289 B
Rust

// Test that we DO NOT warn for a lifetime used twice in an impl.
//
// compile-pass
#![deny(single_use_lifetimes)]
#![allow(dead_code)]
#![allow(unused_variables)]
struct Foo<'f> {
data: &'f u32
}
impl<'f> Foo<'f> {
fn inherent_a(&self, data: &'f u32) {
}
}
fn main() { }