rust/tests/ui/impl-trait/issues/issue-52128.rs

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

26 lines
474 B
Rust
Raw Normal View History

// check-pass
2018-07-13 18:43:08 +00:00
#![deny(warnings)]
use std::collections::BTreeMap;
pub struct RangeMap {
map: BTreeMap<Range, u8>,
}
#[derive(Eq, PartialEq, Ord, PartialOrd)]
struct Range;
impl RangeMap {
fn iter_with_range<'a>(&'a self) -> impl Iterator<Item = (&'a Range, &'a u8)> + 'a {
self.map.range(Range..Range)
}
pub fn iter<'a>(&'a self) -> impl Iterator<Item = &'a u8> + 'a {
self.iter_with_range().map(|(_, data)| data)
}
}
fn main() {}