// issue: 113903 #![feature(return_position_impl_trait_in_trait, lint_reasons)] use std::ops::Deref; pub trait Tr { fn w() -> impl Deref>; //~^ ERROR cannot find type `Missing` in this scope } impl Tr for () { #[expect(refining_impl_trait)] fn w() -> &'static () { &() } } fn main() {}