2022-09-06 12:16:08 -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-06 12:16:08 -05:00
|
|
|
|
|
|
|
#![feature(return_position_impl_trait_in_trait)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
trait Foo {
|
|
|
|
fn f() -> Box<impl Sized>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo for () {
|
|
|
|
fn f() -> Box<String> {
|
|
|
|
Box::new(String::new())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x: Box<String> = <() as Foo>::f();
|
|
|
|
}
|