rust/test/bools.rs

27 lines
364 B
Rust
Raw Normal View History

2016-03-12 21:32:24 -06:00
#![feature(custom_attribute)]
#![allow(dead_code, unused_attributes)]
#[miri_run]
fn boolean() -> bool {
true
}
#[miri_run]
fn if_false() -> i64 {
2016-03-12 21:32:24 -06:00
if false { 1 } else { 0 }
}
#[miri_run]
fn if_true() -> i64 {
2016-03-12 21:32:24 -06:00
if true { 1 } else { 0 }
}
2016-03-13 05:50:16 -05:00
#[miri_run]
fn match_bool() -> i16 {
let b = true;
match b {
true => 1,
_ => 0,
}
}