mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
181 B
Rust
11 lines
181 B
Rust
// run-pass
|
|
#![allow(unreachable_code)]
|
|
#![allow(for_loops_over_fallibles)]
|
|
#![deny(unused_variables)]
|
|
|
|
fn main() {
|
|
for _ in match return () {
|
|
() => Some(0),
|
|
} {}
|
|
}
|