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

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

23 lines
386 B
Rust
Raw Normal View History

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)]
// Test that we DO warn for a lifetime used only once in an impl, and that we
// don't warn for the anonymous lifetime.
2018-05-03 22:43:28 +00:00
struct Foo<'f> {
data: &'f u32
}
2018-05-03 22:43:28 +00:00
impl<'f> Foo<'f> { //~ ERROR `'f` only used once
fn inherent_a(&self) {
}
}
impl Foo<'_> {
fn inherent_b(&self) {}
}
fn main() { }