rust/tests/ui/issues/issue-13167.rs

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

23 lines
480 B
Rust
Raw Normal View History

// check-pass
// pretty-expanded FIXME #23616
2014-10-02 14:52:06 -05:00
use std::slice;
2014-10-02 17:12:58 -05:00
pub struct PhfMapEntries<'a, T: 'a> {
iter: slice::Iter<'a, (&'static str, T)>,
2014-10-02 14:52:06 -05:00
}
2015-01-02 09:25:54 -06:00
impl<'a, T> Iterator for PhfMapEntries<'a, T> {
type Item = (&'static str, &'a T);
2014-10-02 14:52:06 -05:00
fn next(&mut self) -> Option<(&'static str, &'a T)> {
self.iter.by_ref().map(|&(key, ref value)| (key, value)).next()
}
fn size_hint(&self) -> (usize, Option<usize>) {
2014-10-02 14:52:06 -05:00
self.iter.size_hint()
}
}
fn main() {}