rust/test/bools.rs
Scott Olson 3f96b3a122 Use i64 instead of i32 in tests.
Miri's only integer representation right now is 64-bit.
2016-03-12 22:39:12 -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() -> i64 {
if false { 1 } else { 0 }
}
#[miri_run]
fn if_true() -> i64 {
if true { 1 } else { 0 }
}
// #[miri_run]
// fn match_bool() -> i64 {
// let b = true;
// match b {
// true => 1,
// false => 0,
// }
// }