mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
10 lines
162 B
Zig
10 lines
162 B
Zig
export fn entry(x: f32) u32 {
|
|
return @popCount(x);
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :2:22: error: expected integer or vector, found 'f32'
|