mirror of
https://github.com/ziglang/zig.git
synced 2026-01-15 20:05:16 +00:00
14 lines
246 B
Zig
14 lines
246 B
Zig
fn entry(a: ?*addrspace(.gs) i32) *i32 {
|
|
return a.?;
|
|
}
|
|
pub fn main() void {
|
|
_ = entry;
|
|
}
|
|
|
|
// error
|
|
// output_mode=Exe
|
|
// backend=stage2,llvm
|
|
// target=x86_64-linux,x86_64-macos
|
|
//
|
|
// :2:13: error: expected *i32, found *addrspace(.gs) i32
|