rust/tests/ui/single-use-lifetime/one-use-in-trait-method-argument.rs

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

27 lines
517 B
Rust
Raw Normal View History

2018-05-03 17:43:28 -05:00
// Test that we DO warn for a lifetime on an impl used only in `&self`
// in a trait method.
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> Iterator for Foo<'f> {
type Item = &'f u32;
fn next<'g>(&'g mut self) -> Option<Self::Item> { //~ ERROR `'g` only used once
//~^ HELP elide the single-use lifetime
2018-05-03 17:43:28 -05:00
None
}
}
2022-05-10 14:15:30 -05:00
trait Bar<'a> {
// But we should not warn here.
fn bar(x: Foo<'a>);
}
fn main() {}