zig/test/cases/translate_c/struct_with_aligned_fields.c
2024-05-09 13:46:50 -07:00

10 lines
218 B
C

struct foo {
__attribute__((aligned(4))) short bar;
};
// translate-c
// c_frontend=aro,clang
//
// pub const struct_foo = extern struct {
// bar: c_short align(4) = @import("std").mem.zeroes(c_short),
// };