rust/tests/ui/impl-trait/in-trait/deep-match-works.rs
2023-10-13 21:01:36 +00:00

20 lines
281 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() {}