summary refs log tree commit diff
path: root/tests/ui/unreachable-code-1.rs
blob: 9c5f7c8f451900f2f31134533154ed9afcef9aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//@ 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);
}

fn call_id_3() { id(return) && id(return); }

pub fn main() {
}