Sign in
third-party-mirror
/
cbindgen
/
9a26cd0114a633fa05ece30bd3f1b13149f496f2
/
.
/
cbindgen-0.24.5
/
tests
/
expectations
/
union_self.both.c
blob: 0eef193d1e97121de2804473cc2a8c52e71db56b [
file
] [
log
] [
blame
]
#include
<stdarg.h>
#include
<stdbool.h>
#include
<stdint.h>
#include
<stdlib.h>
typedef
struct
Foo_Bar
{
const
int32_t
*
something
;
}
Foo_Bar
;
typedef
union
Bar
{
int32_t
something
;
struct
Foo_Bar
subexpressions
;
}
Bar
;
void
root
(
union
Bar
b
);