mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 16:23:07 +00:00
17 lines
260 B
Zig
17 lines
260 B
Zig
const Foo = struct {
|
|
derp: i32,
|
|
};
|
|
export fn foo() usize {
|
|
return @offsetOf(
|
|
Foo,
|
|
"a",
|
|
);
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :7:9: error: no field named 'a' in struct 'tmp.Foo'
|
|
// :1:13: note: struct declared here
|