rust/tests/ui/single-use-lifetime/two-uses-in-trait-impl.rs

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

23 lines
382 B
Rust
Raw Normal View History

2018-05-03 18:43:28 -04:00
// Test that we DO NOT warn for a lifetime on an impl used in both
// header and in an associated type.
//
// check-pass
2018-05-03 18:43:28 -04:00
2018-05-19 01:13:53 +03:00
#![deny(single_use_lifetimes)]
2018-05-03 18:43:28 -04:00
#![allow(dead_code)]
#![allow(unused_variables)]
struct Foo<'f> {
data: &'f u32,
}
2018-05-03 18:43:28 -04:00
impl<'f> Iterator for Foo<'f> {
type Item = &'f u32;
fn next(&mut self) -> Option<Self::Item> {
None
}
}
fn main() {}