zig/test/cases/if.zig

39 lines
650 B
Zig
Raw Normal View History

2017-01-05 00:57:48 -08:00
const assert = @import("std").debug.assert;
2017-09-09 19:53:32 -07:00
test "if statements" {
2016-12-21 21:20:14 -08:00
shouldBeEqual(1, 1);
firstEqlThird(2, 1, 2);
}
fn shouldBeEqual(a: i32, b: i32) {
if (a != b) {
unreachable;
2016-12-21 21:20:14 -08:00
} else {
return;
}
}
fn firstEqlThird(a: i32, b: i32, c: i32) {
if (a == b) {
unreachable;
2016-12-21 21:20:14 -08:00
} else if (b == c) {
unreachable;
2016-12-21 21:20:14 -08:00
} else if (a == c) {
return;
} else {
unreachable;
2016-12-21 21:20:14 -08:00
}
}
2017-09-09 19:53:32 -07:00
test "else if expression" {
2016-12-21 22:42:30 -08:00
assert(elseIfExpressionF(1) == 1);
}
fn elseIfExpressionF(c: u8) -> u8 {
if (c == 0) {
0
} else if (c == 1) {
1
} else {
u8(2)
}
}