aboutsummaryrefslogtreecommitdiff
path: root/test/link/wasm/archive/main.zig
blob: 465f85f9f6699690f5e6d9c9d4983a7f5371667f (plain)
1
2
3
4
5
6
7
export fn foo() void {
    var a: f16 = 2.2;
    _ = &a;
    // this will pull-in compiler-rt
    const b = @trunc(a);
    _ = b;
}