mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
85 lines
2 KiB
Rust
85 lines
2 KiB
Rust
|
//@aux-build:proc_macros.rs
|
||
|
#![allow(clippy::unnecessary_fold, unused)]
|
||
|
#![warn(clippy::manual_try_fold)]
|
||
|
#![feature(try_trait_v2)]
|
||
|
|
||
|
use std::ops::ControlFlow;
|
||
|
use std::ops::FromResidual;
|
||
|
use std::ops::Try;
|
||
|
|
||
|
#[macro_use]
|
||
|
extern crate proc_macros;
|
||
|
|
||
|
// Test custom `Try` with more than 1 argument
|
||
|
struct NotOption(i32, i32);
|
||
|
|
||
|
impl<R> FromResidual<R> for NotOption {
|
||
|
fn from_residual(_: R) -> Self {
|
||
|
todo!()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl Try for NotOption {
|
||
|
type Output = ();
|
||
|
type Residual = ();
|
||
|
|
||
|
fn from_output(_: Self::Output) -> Self {
|
||
|
todo!()
|
||
|
}
|
||
|
|
||
|
fn branch(self) -> ControlFlow<Self::Residual, Self::Output> {
|
||
|
todo!()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Test custom `Try` with only 1 argument
|
||
|
#[derive(Default)]
|
||
|
struct NotOptionButWorse(i32);
|
||
|
|
||
|
impl<R> FromResidual<R> for NotOptionButWorse {
|
||
|
fn from_residual(_: R) -> Self {
|
||
|
todo!()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl Try for NotOptionButWorse {
|
||
|
type Output = ();
|
||
|
type Residual = ();
|
||
|
|
||
|
fn from_output(_: Self::Output) -> Self {
|
||
|
todo!()
|
||
|
}
|
||
|
|
||
|
fn branch(self) -> ControlFlow<Self::Residual, Self::Output> {
|
||
|
todo!()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
[1, 2, 3]
|
||
|
.iter()
|
||
|
.fold(Some(0i32), |sum, i| sum?.checked_add(*i))
|
||
|
.unwrap();
|
||
|
[1, 2, 3]
|
||
|
.iter()
|
||
|
.fold(NotOption(0i32, 0i32), |sum, i| NotOption(0i32, 0i32));
|
||
|
[1, 2, 3]
|
||
|
.iter()
|
||
|
.fold(NotOptionButWorse(0i32), |sum, i| NotOptionButWorse(0i32));
|
||
|
// Do not lint
|
||
|
[1, 2, 3].iter().try_fold(0i32, |sum, i| sum.checked_add(*i)).unwrap();
|
||
|
[1, 2, 3].iter().fold(0i32, |sum, i| sum + i);
|
||
|
[1, 2, 3]
|
||
|
.iter()
|
||
|
.fold(NotOptionButWorse::default(), |sum, i| NotOptionButWorse::default());
|
||
|
external! {
|
||
|
[1, 2, 3].iter().fold(Some(0i32), |sum, i| sum?.checked_add(*i)).unwrap();
|
||
|
[1, 2, 3].iter().try_fold(0i32, |sum, i| sum.checked_add(*i)).unwrap();
|
||
|
}
|
||
|
with_span! {
|
||
|
span
|
||
|
[1, 2, 3].iter().fold(Some(0i32), |sum, i| sum?.checked_add(*i)).unwrap();
|
||
|
[1, 2, 3].iter().try_fold(0i32, |sum, i| sum.checked_add(*i)).unwrap();
|
||
|
}
|
||
|
}
|