#include <cstdarg>
#include <cstdint>
#include <cstdlib>

struct A {
  int32_t x;
  float y;
};

struct B {
  A data;
};
