rust/test/bools.rs
2016-03-12 21:32:24 -06:00

27 lines
392 B
Rust
Executable File

#![feature(custom_attribute)]
#![allow(dead_code, unused_attributes)]
#[miri_run]
fn boolean() -> bool {
true
}
#[miri_run]
fn if_false() -> i32 {
if false { 1 } else { 0 }
}
#[miri_run]
fn if_true() -> i32 {
if true { 1 } else { 0 }
}
// #[miri_run]
// fn match_bool() -> i32 {
// let b = true;
// match b {
// true => 1,
// false => 0,
// }
// }