mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
9 lines
238 B
Rust
9 lines
238 B
Rust
//@ 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() {}
|