blob: 18196d7b34fe85c90b8cd35bcfbe22b9a5c54289 [file] [log] [blame]
//@ known-bug: rust-lang/rust#125185
#![feature(return_position_impl_trait_in_trait, return_type_notation)]
trait IntFactory {
fn stream(&self) -> impl IntFactory<stream(): IntFactory<stream(): Send> + Send>;
}
pub fn main() {}