mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 08:13:07 +00:00
10 lines
166 B
Zig
10 lines
166 B
Zig
export fn entry(a: *i32) usize {
|
|
return @ptrCast(usize, a);
|
|
}
|
|
|
|
// error
|
|
// backend=llvm
|
|
// target=native
|
|
//
|
|
// :2:21: error: expected pointer type, found 'usize'
|