You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
latest update on 2020-04-08, rust version 1.44.0-nightly (42abbd887 2020-04-07)
It looks like with this nightly ver. builds might have been failing.
I haven't had deep look at that but it seems like overarching lifetimes are the issue.
error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'a` due to conflicting requirements
##[error] --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/proptest-0.9.5/src/arbitrary/_core/iter.rs:47:23
|
47 | base.prop_map(Iterator::cloned).boxed()
| ^^^^^^^^^^^^^^^^
|
note: first, the lifetime cannot outlive the lifetime `'a` as defined on the impl at 36:9...
--> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/proptest-0.9.5/src/arbitrary/_core/iter.rs:36:9
|
36 | 'a,
| ^^
note: ...so that the types are compatible
--> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/proptest-0.9.5/src/arbitrary/_core/iter.rs:47:23
|
47 | base.prop_map(Iterator::cloned).boxed()
| ^^^^^^^^^^^^^^^^
= note: expected `&'a T`
found `&T`
= note: but, the lifetime must be valid for the static lifetime...
note: ...so that the type `strategy::map::Map<S, fn(A) -> core::iter::Cloned<A> {<A as core::iter::Iterator>::cloned::<'_, T>}>` will meet its required lifetime bounds
--> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/proptest-0.9.5/src/arbitrary/_core/iter.rs:47:41
|
47 | base.prop_map(Iterator::cloned).boxed()
| ^^^^^
error: aborting due to previous error
The text was updated successfully, but these errors were encountered:
It looks like with this nightly ver. builds might have been failing.
I haven't had deep look at that but it seems like overarching lifetimes are the issue.
The text was updated successfully, but these errors were encountered: