Description
In the docs for the new FromResidual trait here:
https://doc.rust-lang.org/nightly/std/ops/trait.FromResidual.html
The trait is shown as:
pub trait FromResidual<R = Self::Residual> {
fn from_residual(residual: R) -> Self;
}
which is not valid and will not compile, in the source it looks like this:
pub trait FromResidual<R = <Self as Try>::Residual> {
fn from_residual(residual: R) -> Self;
}