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

13 lines
201 B
C

struct Foo {
int x;
};
// translate-c
// c_frontend=aro,clang
//
// const struct_Foo = extern struct {
// x: c_int = @import("std").mem.zeroes(c_int),
// };
//
// pub const Foo = struct_Foo;