2024-05-18 23:56:57 +02:00
|
|
|
//@ known-bug: rust-lang/rust#125185
|
|
|
|
#![feature(return_position_impl_trait_in_trait, return_type_notation)]
|
|
|
|
|
|
|
|
trait IntFactory {
|
2024-06-28 11:49:16 -04:00
|
|
|
fn stream(&self) -> impl IntFactory<stream(..): IntFactory<stream(..): Send> + Send>;
|
2024-05-18 23:56:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {}
|