about summary refs log tree commit diff
path: root/tests/ui/lifetimes/lifetime-inference-destructuring-arg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/lifetimes/lifetime-inference-destructuring-arg.rs')
-rw-r--r--tests/ui/lifetimes/lifetime-inference-destructuring-arg.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/ui/lifetimes/lifetime-inference-destructuring-arg.rs b/tests/ui/lifetimes/lifetime-inference-destructuring-arg.rs
new file mode 100644
index 00000000000..7a019a71d75
--- /dev/null
+++ b/tests/ui/lifetimes/lifetime-inference-destructuring-arg.rs
@@ -0,0 +1,26 @@
+//! Regression test for https://github.com/rust-lang/rust/issues/13167
+
+//@ check-pass
+//@ revisions: current next
+//@ ignore-compare-mode-next-solver (explicit revisions)
+//@[next] compile-flags: -Znext-solver
+
+use std::slice;
+
+pub struct PhfMapEntries<'a, T: 'a> {
+    iter: slice::Iter<'a, (&'static str, T)>,
+}
+
+impl<'a, T> Iterator for PhfMapEntries<'a, T> {
+    type Item = (&'static str, &'a T);
+
+    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>) {
+        self.iter.size_hint()
+    }
+}
+
+fn main() {}