zig/test/cases/bool.zig

36 lines
701 B
Zig
Raw Normal View History

2017-01-05 00:57:48 -08:00
const assert = @import("std").debug.assert;
2017-05-23 18:38:31 -07:00
test "bool literals" {
2016-12-21 22:20:08 -08:00
assert(true);
assert(!false);
}
2017-05-23 18:38:31 -07:00
test "cast bool to int" {
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-05-23 18:38:31 -07:00
test "bool cmp" {
2016-12-21 22:42:30 -08:00
assert(testBoolCmp(true, false) == false);
}
fn testBoolCmp(a: bool, b: bool) -> bool {
a == b
}
const global_f = false;
const global_t = true;
const not_global_f = !global_f;
const not_global_t = !global_t;
2017-05-23 18:38:31 -07:00
test "compile time bool not" {
assert(not_global_f);
assert(!not_global_t);
}