mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
386 B
Rust
23 lines
386 B
Rust
#![deny(single_use_lifetimes)]
|
|
#![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.
|
|
|
|
struct Foo<'f> {
|
|
data: &'f u32
|
|
}
|
|
|
|
impl<'f> Foo<'f> { //~ ERROR `'f` only used once
|
|
fn inherent_a(&self) {
|
|
}
|
|
}
|
|
|
|
impl Foo<'_> {
|
|
fn inherent_b(&self) {}
|
|
}
|
|
|
|
|
|
fn main() { }
|