From 73f8a2f35655477f6552a59fc8da87c1a102b6d3 Mon Sep 17 00:00:00 2001 From: timofey Date: Fri, 26 May 2023 09:10:29 +0000 Subject: [PATCH] `SpeculativeFail` lifetime elision --- src/func.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/func.rs b/src/func.rs index 63a8288..fe87ced 100644 --- a/src/func.rs +++ b/src/func.rs @@ -328,7 +328,7 @@ pub trait MonadFailAnyExt<'a>: MonadFailAny<'a> { wwa: WrapE<'a, WrapE<'a, A, E0, Self>, E1, Self>, wwb: WrapE<'a, WrapE<'a, B, E0, Self>, E1, Self>, ) -> WrapE<'a, (A, B), Result, Self> { - >::speculative(wwa, wwb) + ::speculative(wwa, wwb) } }