Sign in
android
/
platform
/
external
/
rust
/
crates
/
cbindgen
/
4f3b9773ed1d8cac8f669bc84613aae4734fd808
/
.
/
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
);