We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
impl Trait
We were trying to make a function that returns itself.
#![feature(conservative_impl_trait)] fn foo() -> impl Copy { foo }
rustc overflows its stack.
cc @aturon