about summary refs log tree commit diff
path: root/tests/ui/polymorphization/symbol-ambiguity.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/polymorphization/symbol-ambiguity.rs')
-rw-r--r--tests/ui/polymorphization/symbol-ambiguity.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/ui/polymorphization/symbol-ambiguity.rs b/tests/ui/polymorphization/symbol-ambiguity.rs
new file mode 100644
index 00000000000..6277a902fa2
--- /dev/null
+++ b/tests/ui/polymorphization/symbol-ambiguity.rs
@@ -0,0 +1,22 @@
+// build-pass
+// compile-flags: -Zpolymorphize=on -Csymbol-mangling-version=v0
+
+pub(crate) struct Foo<'a, I, E>(I, &'a E);
+
+impl<'a, I, T: 'a, E> Iterator for Foo<'a, I, E>
+where
+    I: Iterator<Item = &'a (T, E)>,
+{
+    type Item = T;
+
+    fn next(&mut self) -> Option<Self::Item> {
+        self.find(|_| true)
+    }
+}
+
+fn main() {
+    let mut a = Foo([(1u32, 1u16)].iter(), &1u16);
+    let mut b = Foo([(1u16, 1u32)].iter(), &1u32);
+    let _ = a.next();
+    let _ = b.next();
+}