2017-01-05 00:57:48 -08:00
|
|
|
const assert = @import("std").debug.assert;
|
|
|
|
|
2017-03-16 13:02:35 -07:00
|
|
|
test "boolLiterals" {
|
2016-12-21 22:20:08 -08:00
|
|
|
assert(true);
|
|
|
|
assert(!false);
|
|
|
|
}
|
|
|
|
|
2017-03-16 13:02:35 -07:00
|
|
|
test "castBoolToInt" {
|
2016-12-21 22:20:08 -08:00
|
|
|
const t = true;
|
|
|
|
const f = false;
|
|
|
|
assert(i32(t) == i32(1));
|
|
|
|
assert(i32(f) == i32(0));
|
|
|
|
nonConstCastBoolToInt(t, f);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn nonConstCastBoolToInt(t: bool, f: bool) {
|
|
|
|
assert(i32(t) == i32(1));
|
|
|
|
assert(i32(f) == i32(0));
|
|
|
|
}
|
|
|
|
|
2017-03-16 13:02:35 -07:00
|
|
|
test "boolCmp" {
|
2016-12-21 22:42:30 -08:00
|
|
|
assert(testBoolCmp(true, false) == false);
|
|
|
|
}
|
|
|
|
fn testBoolCmp(a: bool, b: bool) -> bool {
|
|
|
|
a == b
|
|
|
|
}
|
2017-01-16 11:58:22 -08:00
|
|
|
|
2017-01-16 14:15:42 -08:00
|
|
|
const global_f = false;
|
|
|
|
const global_t = true;
|
|
|
|
const not_global_f = !global_f;
|
|
|
|
const not_global_t = !global_t;
|
2017-03-16 13:02:35 -07:00
|
|
|
test "compileTimeBoolnot" {
|
2017-01-16 14:15:42 -08:00
|
|
|
assert(not_global_f);
|
|
|
|
assert(!not_global_t);
|
|
|
|
}
|