mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
8 lines
132 B
Zig
8 lines
132 B
Zig
export fn foo() void {
|
|
var a: f16 = 2.2;
|
|
_ = &a;
|
|
// this will pull-in compiler-rt
|
|
const b = @trunc(a);
|
|
_ = b;
|
|
}
|