#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>

enum Foo_Tag {
  A,
};

struct A_Body {
  float _0[20];
};

struct Foo {
  enum Foo_Tag tag;
  union {
    struct A_Body a;
  };
};

void root(struct Foo a);
