summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/deep-match-works.rs
blob: 8c992743862f61499a8c5c7deddb0f37bb39eaa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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() {}