2019-07-26 21:54:25 +00:00
|
|
|
//@ run-pass
|
|
|
|
|
2018-09-14 10:20:28 +00:00
|
|
|
#![allow(unused_must_use)]
|
|
|
|
#![allow(dead_code)]
|
2016-08-13 09:41:43 +00:00
|
|
|
#![allow(path_statements)]
|
2014-04-14 15:30:31 +00:00
|
|
|
#![allow(unreachable_code)]
|
2016-08-13 09:41:43 +00:00
|
|
|
#![allow(unused_variables)]
|
2023-09-18 15:18:51 +00:00
|
|
|
#![feature(if_let_guard)]
|
2012-07-26 21:47:05 +00:00
|
|
|
|
2023-09-18 15:18:51 +00:00
|
|
|
fn id(x: bool) -> bool {
|
|
|
|
x
|
|
|
|
}
|
2012-07-26 21:47:05 +00:00
|
|
|
|
|
|
|
fn call_id() {
|
2014-10-09 19:17:22 +00:00
|
|
|
let c = panic!();
|
2012-07-26 21:47:05 +00:00
|
|
|
id(c);
|
|
|
|
}
|
|
|
|
|
2023-09-18 15:18:51 +00:00
|
|
|
fn call_id_2() {
|
|
|
|
id(true) && id(return);
|
|
|
|
}
|
2012-07-26 21:47:05 +00:00
|
|
|
|
2023-09-18 15:18:51 +00:00
|
|
|
fn call_id_3() {
|
|
|
|
id(return) && id(return);
|
|
|
|
}
|
2012-07-26 21:47:05 +00:00
|
|
|
|
|
|
|
fn ret_guard() {
|
2015-01-25 21:05:03 +00:00
|
|
|
match 2 {
|
2012-08-04 02:59:04 +00:00
|
|
|
x if (return) => { x; }
|
2023-09-18 15:18:51 +00:00
|
|
|
x if let true = return => { x; }
|
2012-08-04 02:59:04 +00:00
|
|
|
_ => {}
|
2012-07-26 21:47:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {}
|