rust/test/bools.rs
2016-03-13 04:50:16 -06:00

27 lines
364 B
Rust
Executable File

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