Closed
Description
trait Foo {
type Out;
}
impl<T> Foo for Box<T> {
type Out where T: Clone = T;
}
fn main() {}
Compiling this code results in no output by rustc
. But rustc
exits with 101 and does not produce any artifacts. (On Playground)
The error happens with:
rustc 1.27.1 (5f2b325f6 2018-07-07)
,rustc 1.27.2 (58cc626de 2018-07-18)
, andrustc 1.29.0-nightly (874dec25e 2018-07-21)