// check-pass #![feature(return_position_impl_trait_in_trait)] #![allow(incomplete_features)] trait Foo { fn f() -> Box; } impl Foo for () { fn f() -> Box { Box::new(String::new()) } } fn main() { let x: Box = <() as Foo>::f(); }