mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
13 lines
201 B
C
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;
|