summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/type-ascription-instead-of-path-2.fixed
blob: 4cec58be856f033e3906ee4c596af4d437cdf3b5 (plain)
1
2
3
4
5
6
// run-rustfix
fn main() -> Result<(), ()> {
    let _ = vec![Ok(2)].into_iter().collect::<Result<Vec<_>,_>>()?;
    //~^ ERROR expected one of
    Ok(())
}