blob: f1272926ae21066219843e743b5990d67915489b [file] [log] [blame]
#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <ostream>
#include <new>
enum E {
V,
};
struct S {
uint8_t field;
};
using A = uint8_t;
constexpr static const S C1 = S{ /* .field = */ 0 };
constexpr static const E C2 = V;
constexpr static const A C3 = 0;