about summary refs log tree commit diff
path: root/tests/ui/impl-trait/in-trait/auxiliary/rpitit.rs
blob: f6120b3fc70e01b82a9343c2d379b45cf2e294ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::ops::Deref;

pub trait Foo {
    fn bar(self) -> impl Deref<Target = impl Sized>;
}

pub struct Foreign;
impl Foo for Foreign {
    #[expect(refining_impl_trait)]
    fn bar(self) -> &'static () {
        &()
    }
}