zig/test/cases/fn.zig

97 lines
1.6 KiB
Zig
Raw Normal View History

2017-01-05 00:57:48 -08:00
const assert = @import("std").debug.assert;
test "params" {
2016-12-21 21:20:14 -08:00
assert(testParamsAdd(22, 11) == 33);
}
fn testParamsAdd(a: i32, b: i32) -> i32 {
a + b
}
2017-09-09 19:53:32 -07:00
test "local variables" {
2016-12-21 21:20:14 -08:00
testLocVars(2);
}
fn testLocVars(b: i32) {
const a: i32 = 1;
if (a + b != 3) unreachable;
2016-12-21 21:20:14 -08:00
}
2017-09-09 19:53:32 -07:00
test "void parameters" {
2016-12-21 21:46:17 -08:00
voidFun(1, void{}, 2, {});
}
fn voidFun(a: i32, b: void, c: i32, d: void) {
const v = b;
const vv: void = if (a == 1) {v} else {};
assert(a + c == 3);
return vv;
}
2016-12-21 21:20:14 -08:00
2017-09-09 19:53:32 -07:00
test "mutable local variables" {
2016-12-21 21:55:21 -08:00
var zero : i32 = 0;
assert(zero == 0);
var i = i32(0);
while (i != 3) {
i += 1;
}
assert(i == 3);
}
2017-09-09 19:53:32 -07:00
test "separate block scopes" {
2016-12-21 21:55:21 -08:00
{
const no_conflict : i32 = 5;
assert(no_conflict == 5);
}
const c = {
const no_conflict = i32(10);
no_conflict
};
assert(c == 10);
}
2017-09-09 19:53:32 -07:00
test "call function with empty string" {
2016-12-21 22:42:30 -08:00
acceptsString("");
}
fn acceptsString(foo: []u8) { }
fn @"weird function name"() -> i32 {
return 1234;
}
test "weird function name" {
assert(@"weird function name"() == 1234);
2016-12-21 22:42:30 -08:00
}
2016-12-21 21:55:21 -08:00
2017-09-09 19:53:32 -07:00
test "implicit cast function unreachable return" {
2016-12-22 07:09:53 -08:00
wantsFnWithVoid(fnWithUnreachable);
}
fn wantsFnWithVoid(f: fn()) { }
fn fnWithUnreachable() -> noreturn {
unreachable
2016-12-22 07:09:53 -08:00
}
2017-09-09 19:53:32 -07:00
test "function pointers" {
2016-12-26 00:44:59 -08:00
const fns = []@typeOf(fn1) { fn1, fn2, fn3, fn4, };
for (fns) |f, i| {
assert(f() == u32(i) + 5);
}
}
fn fn1() -> u32 {5}
fn fn2() -> u32 {6}
fn fn3() -> u32 {7}
fn fn4() -> u32 {8}
test "inline function call" {
assert(@inlineCall(add, 3, 9) == 12);
}
fn add(a: i32, b: i32) -> i32 { a + b }