mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
247 B
Rust
13 lines
247 B
Rust
// This file has unexpected closing delimiter,
|
|
|
|
fn func(o: Option<u32>) {
|
|
match o {
|
|
Some(_x) => // Missing '{'
|
|
let _ = if true {};
|
|
}
|
|
None => {}
|
|
}
|
|
} //~ ERROR unexpected closing delimiter
|
|
|
|
fn main() {}
|