mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 04:28:17 +00:00
9 lines
164 B
Rust
9 lines
164 B
Rust
// run-pass
|
|
|
|
#![allow(unused_parens)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
fn foo() { if (return) { } } //~ WARNING unreachable block in `if`
|
|
|
|
pub fn main() { foo(); }
|