mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
20 lines
311 B
Rust
20 lines
311 B
Rust
// issue: 113903
|
|
|
|
#![feature(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() {}
|