rust/tests/ui/impl-trait/in-trait/deep-match-works.rs
2024-02-16 20:02:50 +00:00

20 lines
282 B
Rust

//@ check-pass
#![feature(lint_reasons)]
#![allow(incomplete_features)]
pub struct Wrapper<T>(T);
pub trait Foo {
fn bar() -> Wrapper<impl Sized>;
}
impl Foo for () {
#[expect(refining_impl_trait)]
fn bar() -> Wrapper<i32> {
Wrapper(0)
}
}
fn main() {}