Files
cbindgen/tests/expectations/array.both.c
T
2020-11-25 17:55:58 +01:00

22 lines
271 B
C

#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
typedef enum Foo_Tag {
A,
} Foo_Tag;
typedef struct A_Body {
float _0[20];
} A_Body;
typedef struct Foo {
Foo_Tag tag;
union {
A_Body a;
};
} Foo;
void root(struct Foo a);