rust/tests/crashes/131648.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
150 B
Rust
Raw Normal View History

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