12 lines
205 B
Rust
12 lines
205 B
Rust
//@ known-bug: rust-lang/rust#126850
|
|
fn bug<T>() -> impl Iterator<
|
|
Item = [(); {
|
|
|found: &String| Some(false);
|
|
4
|
|
}],
|
|
> {
|
|
std::iter::empty()
|
|
}
|
|
|
|
fn main() {}
|