aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/decltest.zig
blob: f731f80fb2e0d16c2025393b618cf3a4504e8dfa (plain)
1
2
3
4
5
6
7
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;
}