rust/tests/ui/impl-trait/in-trait/rpitit-shadowed-by-missing-adt.rs
2024-06-25 17:22:22 +02:00

18 lines
284 B
Rust

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