mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
11 lines
174 B
Zig
11 lines
174 B
Zig
const Foo = i32;
|
|
export fn foo() usize {
|
|
return @offsetOf(Foo, "a");
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :3:22: error: expected struct type, found 'i32'
|