zig/test/cases/compile_errors/offsetOf-non_struct.zig
2022-06-30 09:57:38 +02:00

11 lines
175 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'