]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/issue-52128.rs
Use the correct visibility
[rust.git] / src / test / ui / impl-trait / issue-52128.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // compile-pass
12
13 #![deny(warnings)]
14
15 use std::collections::BTreeMap;
16
17 pub struct RangeMap {
18     map: BTreeMap<Range, u8>,
19 }
20
21 #[derive(Eq, PartialEq, Ord, PartialOrd)]
22 struct Range;
23
24 impl RangeMap {
25     fn iter_with_range<'a>(&'a self) -> impl Iterator<Item = (&'a Range, &'a u8)> + 'a {
26         self.map.range(Range..Range)
27     }
28
29     pub fn iter<'a>(&'a self) -> impl Iterator<Item = &'a u8> + 'a {
30         self.iter_with_range().map(|(_, data)| data)
31     }
32
33 }
34
35 fn main() {}