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

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

25 lines
573 B
Rust
Raw Normal View History

//@ check-pass
//@ revisions: current next
//@ ignore-compare-mode-next-solver (explicit revisions)
2023-12-14 13:11:28 +01:00
//@[next] compile-flags: -Znext-solver
2014-10-02 21:52:06 +02:00
use std::slice;
2014-10-02 15:12:58 -07:00
pub struct PhfMapEntries<'a, T: 'a> {
iter: slice::Iter<'a, (&'static str, T)>,
2014-10-02 21:52:06 +02:00
}
2015-01-02 10:25:54 -05:00
impl<'a, T> Iterator for PhfMapEntries<'a, T> {
type Item = (&'static str, &'a T);
2014-10-02 21:52:06 +02: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 21:52:06 +02:00
self.iter.size_hint()
}
}
fn main() {}