mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
14 lines
242 B
Rust
14 lines
242 B
Rust
// build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
#![allow(unused_variables)]
|
|
#![allow(dead_code)]
|
|
#![deny(unreachable_code)]
|
|
|
|
fn foo() {
|
|
// No error here.
|
|
let x = false && (return);
|
|
println!("I am not dead.");
|
|
}
|
|
|
|
fn main() { }
|