mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-29 07:08:14 +00:00
13 lines
200 B
Rust
13 lines
200 B
Rust
//@ known-bug: #133426
|
|
|
|
fn a(
|
|
_: impl Iterator<
|
|
Item = [(); {
|
|
match *todo!() { ! };
|
|
}],
|
|
>,
|
|
) {
|
|
}
|
|
|
|
fn b(_: impl Iterator<Item = { match 0 { ! } }>) {}
|