mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
8 lines
133 B
Rust
8 lines
133 B
Rust
//@ run-pass
|
|
|
|
#![allow(unused_parens)]
|
|
|
|
fn foo() { if (return) { } } //~ WARNING unreachable block in `if`
|
|
|
|
pub fn main() { foo(); }
|