6 lines
100 B
Rust
6 lines
100 B
Rust
// Issue #521
|
|
|
|
fn f() { let x = match true { true => { 10 } false => { return } }; }
|
|
|
|
fn main() { }
|