summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/issue-71546.rs
blob: 42100edeaa7125d40dfda579781f6b960d5a593e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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() {}