blob: 22746548e02cb0090bf35b8b1f37e066a1753321 [file] [log] [blame]
//@ known-bug: #119717
#![feature(const_trait_impl, effects)]
use std::ops::{FromResidual, Try};
impl const FromResidual for T {
fn from_residual(t: T) -> _ {
t
}
}