blob: 44a2b4303441ee9a6770c46294c66e8b1f819b3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// issue: 113903
#![feature(return_position_impl_trait_in_trait, lint_reasons)]
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() {}
|