mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 06:52:01 +00:00
9 lines
155 B
Rust
9 lines
155 B
Rust
fn main() {}
|
|
|
|
trait T {
|
|
fn qux() -> Option<usize> {
|
|
let _ = if true {
|
|
}); //~ ERROR mismatched closing delimiter
|
|
Some(4)
|
|
}
|