rust/tests/crashes/131648.rs
2024-10-20 10:05:39 +02:00

8 lines
150 B
Rust

//@ known-bug: #131648
#![feature(return_type_notation)]
trait IntFactory {
fn stream(self) -> impl IntFactory<stream(..): Send>;
}
fn main() {}