summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/issue-71546.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/borrowck/issue-71546.rs')
-rw-r--r--tests/ui/borrowck/issue-71546.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ui/borrowck/issue-71546.rs b/tests/ui/borrowck/issue-71546.rs
new file mode 100644
index 000000000..42100edea
--- /dev/null
+++ b/tests/ui/borrowck/issue-71546.rs
@@ -0,0 +1,17 @@
+// Regression test for #71546.
+//
+// Made to pass as part of fixing #98095.
+//
+// check-pass
+
+pub fn serialize_as_csv<V>(value: &V) -> Result<String, &str>
+where
+ V: 'static,
+ for<'a> &'a V: IntoIterator,
+ for<'a> <&'a V as IntoIterator>::Item: ToString + 'static,
+{
+ let csv_str: String = value.into_iter().map(|elem| elem.to_string()).collect::<String>();
+ Ok(csv_str)
+}
+
+fn main() {}