2022-09-02 16:02:59 -05:00
|
|
|
// check-pass
|
2023-03-08 08:18:38 -06:00
|
|
|
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
|
|
|
|
// revisions: current next
|
2022-09-02 16:02:59 -05:00
|
|
|
|
|
|
|
#![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-03-08 08:18:38 -06:00
|
|
|
fn bar() -> Wrapper<i32> {
|
|
|
|
Wrapper(0)
|
|
|
|
}
|
2022-09-02 16:02:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|