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
551 B
Rust
Raw Normal View History

// check-pass
// pretty-expanded FIXME #23616
// revisions: current next
//[next] compile-flags: -Ztrait-solver=next
2014-10-02 19:52:06 +00:00
use std::slice;
2014-10-02 22:12:58 +00:00
pub struct PhfMapEntries<'a, T: 'a> {
iter: slice::Iter<'a, (&'static str, T)>,
2014-10-02 19:52:06 +00:00
}
2015-01-02 15:25:54 +00:00
impl<'a, T> Iterator for PhfMapEntries<'a, T> {
type Item = (&'static str, &'a T);
2014-10-02 19:52:06 +00: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 19:52:06 +00:00
self.iter.size_hint()
}
}
fn main() {}