rust/tests/ui/impl-trait/in-trait/rpitit-shadowed-by-missing-adt.rs
2023-09-07 00:49:09 +00:00

20 lines
333 B
Rust

// issue: 113903
#![feature(return_position_impl_trait_in_trait)]
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 () {
#[allow(refining_impl_trait)]
fn w() -> &'static () {
&()
}
}
fn main() {}