mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-06-22 16:40:57 -04:00
13 lines
243 B
Zig
13 lines
243 B
Zig
const S = extern struct {
|
|
f: struct { u32 },
|
|
};
|
|
|
|
comptime {
|
|
_ = @sizeOf(S);
|
|
}
|
|
|
|
// error
|
|
//
|
|
// :2:8: error: extern structs cannot contain fields of type 'struct { u32 }'
|
|
// :2:8: note: tuples have no guaranteed in-memory representation
|