rust/tests/ui/impl-trait/in-trait/deep-match-works.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
295 B
Rust
Raw Normal View History

// check-pass
#![feature(return_position_impl_trait_in_trait)]
#![allow(incomplete_features)]
struct Wrapper<T>(T);
trait Foo {
fn bar() -> Wrapper<impl Sized>;
}
impl Foo for () {
2023-09-02 04:02:11 +00:00
#[allow(refining_impl_trait)]
fn bar() -> Wrapper<i32> {
Wrapper(0)
}
}
fn main() {}