rust/tests/ui/unreachable-code-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
265 B
Rust
Raw Normal View History

//@ run-pass
#![allow(unused_must_use)]
#![allow(unreachable_code)]
#![allow(unused_variables)]
#![allow(dead_code)]
fn id(x: bool) -> bool { x }
fn call_id() {
let c = panic!();
id(c);
}
2012-08-02 00:30:05 +00:00
fn call_id_3() { id(return) && id(return); }
pub fn main() {
}