blob: 64f1c9118a185888a3db570f6c3dce67d471ce57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#![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() { }
|