aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/decltest.zig
blob: b01a431e2859d14d5469650171b035b21d627e4b (plain)
1
2
3
4
5
6
7
8
9
const builtin = @import("builtin");

pub fn the_add_function(a: u32, b: u32) u32 {
    return a + b;
}

test the_add_function {
    if (the_add_function(1, 2) != 3) unreachable;
}